mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
import Layout from '@/components/Layout'
|
|
import HabitList from '@/components/HabitList'
|
|
|
|
export default function HabitsPage() {
|
|
return (
|
|
<Layout>
|
|
<HabitList />
|
|
</Layout>
|
|
)
|
|
}
|
|
|