Forms, inputs, and pickers
Code editor
1
2
3
4
5
6type Props = { name: string }
export function ComponentName({ name }: Props) {
return <h2>{name}</h2>
}
Forms, inputs, and pickers
1
2
3
4
5
6type Props = { name: string }
export function ComponentName({ name }: Props) {
return <h2>{name}</h2>
}