let a = 12 type Style = 'bold' | 'italic' interface Person { first: string last: string } (x: number, y?: number): string { return Math.pow(x, y).toString() } const About = ({ name }: { name: string }) => (

This page is about {name}

) export default About