Skip to main content

Installation

npm i @serusko/reform

Example of use

import Form, { Field } from '@serusko/reform'

...
const App = () => (
<Form onSubmit={console.log}>
<HtmlField label="First Name" name="firstName" />

<button type="submit">Submit</button>
</Form>
);