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