Files
HabitTrove/app/wishlist/page.tsx
2024-12-30 13:57:28 -05:00

12 lines
213 B
TypeScript

import Layout from '@/components/Layout'
import WishlistManager from '@/components/WishlistManager'
export default function WishlistPage() {
return (
<Layout>
<WishlistManager />
</Layout>
)
}