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

Function App

Video 106/first-app/src/App.jsx:5–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import Card from "./components/Card"
4
5function App() {
6
7 return (
8 <>
9 <Navbar />
10 <div className="cards">
11 <Card title="card 1" description="card 1 desc" />
12 <Card title="card 2" description="card 2 desc" />
13 <Card title="card 3" description="card 3 desc" />
14 <Card title="card 4" description="card 4 desc" />
15 </div>
16 <Footer />
17 </>
18 )
19}
20
21export default App

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected