import { useState } from 'react'; import { Form } from './form'; export default { title: 'Components/Form', component: Form, }; export const Fields = () => { const [file, setFile] = useState(null); return ( <> Label Input error Label Textarea error Label setFile(file)} /> ); };