MCPcopy Create free account
hub / github.com/CodeWithHarry/Sigma-Web-Dev-Course / Navbar

Function Navbar

Video 105/with-react/src/components/Navbar.js:4–16  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import Footer from './Footer'
3
4const Navbar = (props) => {
5 return (
6 <div>
7 <div className="logo">{props.logoText}</div>
8 <ul>
9 <li>Home</li>
10 <li>About</li>
11 <li>Contact Us</li>
12 </ul>
13 <Footer/>
14 </div>
15 )
16}
17
18export default Navbar

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected