Skip to content

Instantly share code, notes, and snippets.

@jatinkumar725
Created February 12, 2023 08:32
Show Gist options
  • Save jatinkumar725/2b75a86628ed67011518f78f73ccd5aa to your computer and use it in GitHub Desktop.
Save jatinkumar725/2b75a86628ed67011518f78f73ccd5aa to your computer and use it in GitHub Desktop.
Build First React App
import React from 'react'
const SideBar = () => {
return (
<div className="col-2 ps-0">
<nav className="bg-dark border-right text-center" style={{ height: '100vh' }}>
<h3 className="pt-4 pl-3 text-light">React App</h3>
<hr className='bg-white' style={{ height: "3px" }}/>
<p className="pt-3">
<a href="#"
className="text-white"
style={{ width: '100%' }}
>
Home
</a>
</p>
<p className="pt-3">
<a href="#"
className="text-white"
style={{ width: '100%' }}
>
About
</a>
</p>
<p className="pt-3">
<a href="#"
className="text-white"
style={{ width: '100%' }}
>
Contact
</a>
</p>
</nav>
</div>
)
}
export default SideBar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment