react-typescript-test/app/page.tsx
2024-09-03 19:21:04 +02:00

14 lines
268 B
TypeScript

function MyButton({ title }: { title: string }) {
return (
<button>{title}</button>
);
}
export default function MyApp() {
return (
<div>
<h1>Welcome to my app</h1>
<MyButton title="I'm a button" />
</div>
);
}