Files
info-target-mobile/app/(dashboard)/profile.tsx
Samandar Turgunboyev d747c72c8d complated
2026-02-17 10:46:57 +05:00

12 lines
261 B
TypeScript

import { CustomHeader } from '@/components/ui/Header';
import Profile from '@/screens/profile/ui/ProfileScreen';
export default function ProfileScreen() {
return (
<>
<CustomHeader logoutbtn={true} notif={false} />
<Profile />
</>
);
}