Package Exports
- @concrete-form/core
- @concrete-form/core/cjs/index.js
- @concrete-form/core/index.js
- @concrete-form/core/translation/TranslationKeys.enum
- @concrete-form/core/translation/TranslationKeys.enum.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@concrete-form/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The most popular React form libraries implemented for you
Installation
Example
Material-UI TextField connected with React hook form
Concrete Form fill the implementation gap between form libraries and UI libraries. No more boilerplate !
import Form from '@concrete-form/react-hook-form'
import Input from '@concrete-form/mui/Input'
import SubmitButton from '@concrete-form/mui/SubmitButton'
const Demo = () => (
<Form onSubmit={data => alert(data.name)}>
<Input name="name" label="Enter your name" margin="normal" />
<SubmitButton fullWidth>Submit</SubmitButton>
</Form>
)Live example on concrete-form.com and on codesandbox