MCPcopy Create free account
hub / github.com/code100x/chess / App

Function App

apps/frontend/src/App.tsx:19–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17import { ThemesProvider } from "./context/themeContext";
18
19function 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
33function AuthApp() {
34 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected