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