mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-20 22:24:28 +01:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
import Layout from '@/components/Layout'
|
|
|
|
export default function SettingsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <Layout>{children}</Layout>
|
|
}
|