()
| 17 | import { ThemesProvider } from "./context/themeContext"; |
| 18 | |
| 19 | function App() { |
| 20 | return ( |
| 21 | <div className="min-h-screen bg-bgMain text-textMain"> |
| 22 | <RecoilRoot> |
| 23 | <Suspense fallback={<Loader />}> |
| 24 | <ThemesProvider> |
| 25 | <AuthApp /> |
| 26 | </ThemesProvider> |
| 27 | </Suspense> |
| 28 | </RecoilRoot> |
| 29 | </div> |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | function AuthApp() { |
| 34 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected