Skip to content

Instantly share code, notes, and snippets.

@GunaShekar02
Created May 29, 2020 22:12
Show Gist options
  • Save GunaShekar02/0be37c5143b29684078d285f938c3244 to your computer and use it in GitHub Desktop.
Save GunaShekar02/0be37c5143b29684078d285f938c3244 to your computer and use it in GitHub Desktop.
The parent component
import React from "react";
import { RecoilRoot } from "recoil";
import Details from "./components/Details/Details";
import Sidebar from "./components/Sidebar/Sidebar";
import "./App.css";
function App() {
return (
<RecoilRoot>
<div className="App">
<div>
<Sidebar />
</div>
<div>
<Details />
</div>
</div>
</RecoilRoot>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment