({ Component, pageProps })
| 5 | import { StateContext } from '../context/StateContext' |
| 6 | |
| 7 | export default function App({ Component, pageProps }) { |
| 8 | return ( |
| 9 | <StateContext> |
| 10 | <Layout> |
| 11 | <Toaster /> |
| 12 | <Component {...pageProps} /> |
| 13 | </Layout> |
| 14 | </StateContext> |
| 15 | ) |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected