You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React Forms, Form Validation, and Tailwind CSS Styling
Introduction
For this project, you'll be building a Note Taking application using React, React Hook Form, Zod for form validation, and Tailwind CSS for styling.
You will learn how to create and validate forms, handle form submissions, and style your components using Tailwind CSS.
Instructions
Task 1: Project Setup
Create a forked copy of this project.
Clone your OWN version of the repository in your terminal
CD into the project base directory cd Week13_NoteTakingApp
First, set up the server:
cd server
npm install
npm start
Open a new terminal window and set up the client:
# Make sure you're in the project root directory
npm install
npm run dev
Create a new branch: git checkout -b <firstName-lastName>. Implement the project on your newly created <firstName-lastName> branch, committing changes regularly.