chore: setup ui
This commit is contained in:
5
src/routes/__root.tsx
Normal file
5
src/routes/__root.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Outlet, createRootRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createRootRoute({
|
||||
component: () => <Outlet />,
|
||||
});
|
||||
5
src/routes/index.lazy.tsx
Normal file
5
src/routes/index.lazy.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { createLazyFileRoute } from '@tanstack/react-router'
|
||||
|
||||
export const Route = createLazyFileRoute('/')({
|
||||
component: () => <div>Hello /!</div>
|
||||
})
|
||||
Reference in New Issue
Block a user