f80f232df4
Setup shadcn for style components Setup TanStack router for routing between different pages in the UI
12 lines
167 B
TypeScript
12 lines
167 B
TypeScript
export const Route = createFileRoute({
|
|
component: Index,
|
|
});
|
|
|
|
function Index() {
|
|
return (
|
|
<div className="p-2">
|
|
<h3>Welcome Home!</h3>
|
|
</div>
|
|
);
|
|
}
|