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