Files
ProjectE/apps/web/src/routes/_app/tasks.tsx
T

18 lines
488 B
TypeScript
Raw Normal View History

2026-08-01 02:00:24 +00:00
import { createRoute } from "@tanstack/react-router";
import { Route as appRoute } from "../_app";
function TasksPage() {
return (
<div className="flex flex-col items-center justify-center min-h-[60vh]">
<h1 className="text-3xl font-bold mb-2">Tasks</h1>
<p className="text-muted-foreground">Coming in T6 full task management.</p>
</div>
);
}
export const Route = createRoute({
getParentRoute: () => appRoute,
path: "/tasks",
component: TasksPage,
});