Miao-Yunzai/example/hello.tsx

11 lines
243 B
TypeScript
Raw Normal View History

2024-06-10 09:34:28 +08:00
import React from 'react'
2024-06-10 10:27:51 +08:00
export type DataType = {
name: string
}
export type PropsType = {
data: DataType
2024-06-10 09:34:28 +08:00
}
export default function App({ data }: PropsType) {
2024-06-10 10:27:51 +08:00
return <div className="text-red-500 p-2 text-xl">Hello, {data.name}!</div>
2024-06-10 09:34:28 +08:00
}