123456789101112131415161718 |
- 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 }) => (
- <h1>This page is about {name}</h1>
- )
- export default About
|