informed icon indicating copy to clipboard operation
informed copied to clipboard

feat: allow add types when we use FormState type

Open mau2099 opened this issue 3 months ago • 2 comments

so that way, we can do:

  const handleOnSubmit = async ({ values }: FormState<AttendanceDetailsForm>) => {
   ...
  }

but we can still use former way, so no breaking changes

  const handleOnSubmit = async ({ values }: FormState) => {
   ...
  }

*Note: changes based on this chart https://teslamotors.github.io/informed/api-reference/fieldState

mau2099 avatar Nov 12 '24 18:11 mau2099