diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 22:57:48 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 22:57:48 +0700 |
| commit | 321e0c09be4b26d72b470407217262d10c88089d (patch) | |
| tree | 999e3db07ef3d5897cd6a585a6a4fc8aea120c72 /src/pages | |
| parent | c6a489da2f3df46b867891c12a3c5f4121f920b0 (diff) | |
fix
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> + ) +} |
