blob: b7a3e4fe2eac7541cf09fd5fd1d7b68482b6106a (
plain)
1
2
3
4
5
6
7
8
9
10
|
import AppLayout from "@/core/components/layouts/AppLayout"
import Wishlists from "@/lib/wishlist/components/Wishlists"
export default function Wishlist() {
return (
<AppLayout title="Wishlist">
<Wishlists />
</AppLayout>
)
}
|