({ Component, pageProps })
| 4 | Error.stackTraceLimit = Infinity; |
| 5 | |
| 6 | function MyApp({ Component, pageProps }) { |
| 7 | const router = useRouter(); |
| 8 | |
| 9 | return ( |
| 10 | <> |
| 11 | <AppHeader framework="next" path={router.pathname} /> |
| 12 | <Component {...pageProps} /> |
| 13 | </> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default MyApp; |
nothing calls this directly
no outgoing calls
no test coverage detected