init: initial commit

This commit is contained in:
Blizzard
2026-08-02 21:15:48 +08:00
commit 48119ef99b
83 changed files with 13349 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { QueryClientProvider } from "@tanstack/react-query";
import { useAppProviders } from "./providers";
import { AppShell } from "../components/layout/AppShell";
export function App() {
const { queryClient } = useAppProviders();
return (
<QueryClientProvider client={queryClient}>
<AppShell />
</QueryClientProvider>
);
}