"use client"; import type { ReactElement } from "react"; import { TaskList } from "@/components/tasks/TaskList"; import { mockTasks } from "@/lib/api/tasks"; export default function TasksPage(): ReactElement { // TODO: Replace with real API call when backend is ready // const { data: tasks, isLoading } = useQuery({ // queryKey: ["tasks"], // queryFn: fetchTasks, // }); const tasks = mockTasks; const isLoading = false; return (

Tasks

Organize your work at your own pace

); }