()
| 8 | import { pageGetServerSideProps } from "../components/getServerSideProps"; |
| 9 | |
| 10 | export default function App() { |
| 11 | return ( |
| 12 | <> |
| 13 | <Headers /> |
| 14 | <Dashboard /> |
| 15 | </> |
| 16 | ); |
| 17 | } |
| 18 | |
| 19 | function Dashboard() { |
| 20 | const { profile } = useProfile(); |
nothing calls this directly
no outgoing calls
no test coverage detected