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

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

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()
],
})

```