12 lines
261 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|