Created
February 12, 2023 08:33
-
-
Save jatinkumar725/a41a21e7b21e6e56921ec86a7e8e9955 to your computer and use it in GitHub Desktop.
Build First React App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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