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