😺

⚛️Reactの使い方だよ〜😀

2021/05/07に公開
const Hello = (props: { name: string }) => {
  return (
    <div>Hello {props.name}!</div>
  )
}

Discussion