https://github.com/khianvictorycalderon/react-useform-demo
Testing react useform hook
https://github.com/khianvictorycalderon/react-useform-demo
react react-js react-use-form react-useform useform
Last synced: 2 months ago
JSON representation
Testing react useform hook
- Host: GitHub
- URL: https://github.com/khianvictorycalderon/react-useform-demo
- Owner: khianvictorycalderon
- Created: 2025-08-07T08:34:48.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-07T08:54:19.000Z (2 months ago)
- Last Synced: 2025-08-07T10:21:15.050Z (2 months ago)
- Topics: react, react-js, react-use-form, react-useform, useform
- Language: TypeScript
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React UseForm Demo
A test project for using useform library. Tailwind included## To run this project:
1. Clone this repository `git clone https://github.com/khianvictorycalderon/React-UseForm-Demo.git`
2. Run `npm install`
3. Run `npm run dev`## Dependencies & Configuration
The following is a list of installed dependencies and configuration settings used in this project.
You don’t need to install anything manually, as all dependencies are already managed through `package.json`.
This section is provided for reference only, to give you insight into how the project was set up.## Dependencies
- `npm install react-hook-form`
- `npm install tailwindcss @tailwindcss/vite`## Configuration Dependencies
- Updated `vite.config.ts`:
```
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
// ...
tailwindcss()
],
})```