Initial open-source release

This commit is contained in:
Will Chen
2025-04-11 09:37:05 -07:00
commit 43f67e0739
208 changed files with 45476 additions and 0 deletions

11
src/App.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { RouterProvider } from "@tanstack/react-router";
import { router } from "./router";
// The router is automatically initialized by RouterProvider
// so we don't need to call initialize() manually
function App() {
return <RouterProvider router={router} />;
}
export default App;