This is a simple React form application created using React and Tailwind CSS.

- Input fields for first name, last name, email, state, city, pin, and notification type.
- Dropdown to select the state.
- Radio buttons to select the notification type.
- Submit button to submit the form.
-
Clone the repository:
git clone https://github.com/your-username/react-form-app.git
-
Navigate to the project directory:
cd reactform
-
Install dependencies:
npm install
-
Initialize Tailwind CSS (if not already initialized):
npx tailwindcss init
-
Build the Tailwind CSS:
npx tailwindcss build -o src/tailwind.css
-
Run the development server:
npm start
-
Open your web browser and go to http://localhost:3000 to use the form.
This project uses Tailwind CSS, a utility-first CSS framework, for styling. Key points about Tailwind CSS integration:
- CSS classes from Tailwind CSS are used to style the form elements.
- The form is enclosed in a container with a
shadow
androunded
styling.

After submitting the form, a popup/modal will appear displaying the submitted data.

This project is licensed under the MIT License - see the LICENSE file for details.