()
| 17 | import { pageGetServerSideProps } from "../components/getServerSideProps"; |
| 18 | |
| 19 | export default function App() { |
| 20 | return ( |
| 21 | <> |
| 22 | <Headers /> |
| 23 | <Dashboard /> |
| 24 | </> |
| 25 | ); |
| 26 | } |
| 27 | |
| 28 | function Dashboard() { |
| 29 | const { profile } = useProfile(); |
nothing calls this directly
no outgoing calls
no test coverage detected