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.
- Host: GitHub
- URL: https://github.com/cardboardrobots/form
- Owner: CardboardRobots
- Created: 2024-11-14T06:02:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-15T03:11:23.000Z (over 1 year ago)
- Last Synced: 2025-01-23T07:13:23.110Z (over 1 year ago)
- Language: TypeScript
- Size: 83 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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 ;
};
```