chore: setup ui

This commit is contained in:
reya
2024-07-23 13:28:45 +07:00
parent 3fbda8202a
commit 8ae1368419
17 changed files with 6829 additions and 197 deletions

5
src/routes/__root.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { Outlet, createRootRoute } from "@tanstack/react-router";
export const Route = createRootRoute({
component: () => <Outlet />,
});

View File

@@ -0,0 +1,5 @@
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/')({
component: () => <div>Hello /!</div>
})