1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/hono/foo.tsx

13 lines
221 B
TypeScript
Raw Normal View History

2024-03-10 00:18:12 +09:00
export function Foo(props: { messages: string[] }) {
return (
<>
<h1>Hello Hono!</h1>
<ul>
{props.messages.map((message) => (
<li>{message}!</li>
))}
</ul>
</>
);
}