UNPKG

remix-validated-form

Version:

Form component and utils for easy form validation in remix

5 lines (4 loc) 179 B
import { useRootFormStore } from "./createFormStore"; export const useFormStore = (formId, selector) => { return useRootFormStore((state) => selector(state.form(formId))); };