Miao-Yunzai/example/hello.tsx

10 lines
209 B
TypeScript

import React from 'react'
type PropsType = {
data: {
name: string
}
}
export default function App({ data }: PropsType) {
return <div className="text-red-500 p-2 text-xl">Hello, ${data.name}!</div>
}