An open API service indexing awesome lists of open source software.

https://github.com/cardboardrobots/form

Forms for react-hook-form and mui.
https://github.com/cardboardrobots/form

Last synced: over 1 year ago
JSON representation

Forms for react-hook-form and mui.

Awesome Lists containing this project

README

          

Forms for `react-hook-form` and `@mui/material`.

```typescript
import { FormInput } from "@cardboardrobots/form";
import { useForm } from "react-hook-form";

const Form = () => {
const { control } = useForm({
defaultValues: {
name: "name",
},
});

return ;
};
```