diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ffcd8e..f465a99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v0.0.7 (unreleased) + +- Add `getValues` to `useForm` hook + # v0.0.6 - Remove `-bs-super-errors` flag for the compatibility with ReScript v12 diff --git a/README.md b/README.md index c2826d4..c26eb95 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ let default = () => { Js.log(watch(Example)) + Js.log(getValues(Example)) + let exampleFieldState = getFieldState(Example, formState) Js.log(exampleFieldState) Js.log(setValue) diff --git a/doc/examples.md b/doc/examples.md index e5314ce..6f05745 100644 --- a/doc/examples.md +++ b/doc/examples.md @@ -14,6 +14,8 @@ let make = () => { Js.log(watch(Example)) + Js.log(getValues(Example)) +