()
| 3 | import Card from "./components/Card" |
| 4 | |
| 5 | function 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 | |
| 21 | export default App |
nothing calls this directly
no outgoing calls
no test coverage detected