This commit is contained in:
2025-07-09 06:54:19 +09:00
parent 57f3cf83ae
commit 9be4bb1532
7 changed files with 200 additions and 201 deletions
@@ -0,0 +1,10 @@
import React from 'react'
type Props = { value?: string
onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void }
export default ({ value, onChange }: Props) => (
<textarea className="rounded border w-full p-2 h-32"
value={value}
onChange={onChange} />)