()
| 60 | |
| 61 | // here app catches the suspense from page in case translations are not yet loaded |
| 62 | export default function App() { |
| 63 | return ( |
| 64 | <Suspense fallback={<Loader />}> |
| 65 | <Page /> |
| 66 | </Suspense> |
| 67 | ); |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected