chore: basic layout
This commit is contained in:
11
src/routes/_app/dashboard.tsx
Normal file
11
src/routes/_app/dashboard.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { createFileRoute } from '@tanstack/react-router';
|
||||
|
||||
export const Route = createFileRoute('/_app/dashboard')({
|
||||
component: Dashboard,
|
||||
});
|
||||
|
||||
function Dashboard() {
|
||||
return (
|
||||
<h3>Welcome Home!</h3>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user