({ Component, pageProps })
| 1 | import "@/styles/globals.css"; |
| 2 | |
| 3 | export default function App({ Component, pageProps }) { |
| 4 | return ( |
| 5 | <> |
| 6 | <Component {...pageProps} /> |
| 7 | </> |
| 8 | ); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected