1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/example
Divlo 5bb73df804
fix: rename value to message in HandleUseFormCallback return type
BREAKING CHANGE: Migrate your onSubmit handlers to return a `message` instead of `value`
2023-04-02 22:08:32 +02:00
..
components fix: rename value to message in HandleUseFormCallback return type 2023-04-02 22:08:32 +02:00
cypress/e2e fix: rename value to message in HandleUseFormCallback return type 2023-04-02 22:08:32 +02:00
hooks fix: update dependencies to latest 2023-01-10 21:23:32 +01:00
locales chore(example): fix translation with global message 2022-08-26 22:53:59 +02:00
models build(deps): update latest 2023-04-02 21:52:34 +02:00
pages fix(types): improve Schema type for useForm 2022-09-21 09:33:09 +02:00
public chore: add example 2022-08-26 20:19:31 +02:00
styles chore: add example 2022-08-26 20:19:31 +02:00
.eslintrc.json chore: add example 2022-08-26 20:19:31 +02:00
.gitignore test: add e2e automated tests 2022-08-26 23:47:48 +02:00
.npmrc chore: add example 2022-08-26 20:19:31 +02:00
cypress.config.ts ci: fix timeout 2022-11-08 11:40:39 +01:00
i18n.json chore: add example 2022-08-26 20:19:31 +02:00
next.config.js build(deps): update latest 2023-04-02 21:52:34 +02:00
package-lock.json build(deps): update latest 2023-04-02 21:52:34 +02:00
package.json build(deps): update latest 2023-04-02 21:52:34 +02:00
postcss.config.js chore: add example 2022-08-26 20:19:31 +02:00
README.md chore: add example 2022-08-26 20:19:31 +02:00
tailwind.config.js chore: remove usage of styled-jsx 2022-10-03 21:23:17 +02:00
tsconfig.json build(deps): update latest 2023-04-02 21:52:34 +02:00

example

This is an example for using react-component-form inside a Next.js application with translations thanks to next-translate.

The application shows how to use the <Form /> component with the useForm hook to validate and submit a form with a name input and an email input.

The interesting code is in ./components/FormExample.tsx.