import { type IUserProfile } from '../../utils/models'; interface UserProfileProps { profile: IUserProfile } export function UserProfile({ profile }: UserProfileProps) { return (

username: {profile.username}

email: {profile.email}

); }