import { ProfileDescriptionBottom } from './ProfileDescriptionBottom' import { ProfileInformation } from './ProfileInfo' import { ProfileList } from './ProfileList' import { ProfileLogo } from './ProfileLogo' export interface ProfileProps { age: number } export const Profile: React.FC = (props) => { const { age } = props return (
) }