Skip to content

Instantly share code, notes, and snippets.

@jatinkumar725
Created February 12, 2023 08:33
Show Gist options
  • Save jatinkumar725/a41a21e7b21e6e56921ec86a7e8e9955 to your computer and use it in GitHub Desktop.
Save jatinkumar725/a41a21e7b21e6e56921ec86a7e8e9955 to your computer and use it in GitHub Desktop.
Build First React App
import Home from './Pages/Home';
import SideBar from './Components/SideBar';
const App = () => {
return (
<div className="container-fluid">
<div className="row">
<SideBar />
<div className="col-10 mt-4" style={{ marginLeft: "210px" }}>
<Home />
</div>
</div>
</div>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment