mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
import HabitList from '@/components/HabitList'
|
|
|
|
export default function TasksPage() {
|
|
return (
|
|
<div className="flex flex-col">
|
|
<HabitList isTasksView={true} />
|
|
</div>
|
|
)
|
|
}
|
|
|