Files
sqwerk/src/routes/index.tsx
T
Rodney Osodo f80f232df4 feat: setup shadcn for styling and TanStack router
Setup shadcn for style components
Setup TanStack router for routing between different pages in the UI
2025-06-12 12:40:18 +03:00

12 lines
167 B
TypeScript

export const Route = createFileRoute({
component: Index,
});
function Index() {
return (
<div className="p-2">
<h3>Welcome Home!</h3>
</div>
);
}