diff options
Diffstat (limited to 'src/pages/my/wishlist.jsx')
| -rw-r--r-- | src/pages/my/wishlist.jsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/my/wishlist.jsx b/src/pages/my/wishlist.jsx new file mode 100644 index 00000000..196adf50 --- /dev/null +++ b/src/pages/my/wishlist.jsx @@ -0,0 +1,13 @@ +import AppLayout from '@/core/components/layouts/AppLayout' +import IsAuth from '@/lib/auth/components/IsAuth' +import Wishlists from '@/lib/wishlist/components/Wishlists' + +export default function Wishlist() { + return ( + <IsAuth> + <AppLayout title='Wishlist'> + <Wishlists /> + </AppLayout> + </IsAuth> + ) +} |
