// Hi, peeps!
interface ProfileProps {
fullName: string;
specializations: string[];
}
const Profile: React.FC<ProfileProps> = ({ fullName, specializations }) => (
<>
<h1>{fullName}</h1>
<h2>{specializations.join(', ')}</h2>
</>
);
export default function About() {
return (
<Profile
fullName="Probo Krishnacahya"
specializations={['Frontend Developer', 'UI/UX Designer']}
/>
);
}![]()

