mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
import HabitCalendar from '@/components/HabitCalendar'
|
|
|
|
export default function CalendarPage() {
|
|
return (
|
|
<div className="flex flex-col">
|
|
<HabitCalendar />
|
|
</div>
|
|
)
|
|
}
|
|
|