This repository is dedicated to my journey of learning React. The project is built using Vite, styled with Tailwind CSS, and written in JavaScript.
Follow these steps to set up and run the project locally.
Ensure you have the following installed:
npm create vite@latest
cd learning-react
npm install
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
@tailwind base;
@tailwind components;
@tailwind utilities;
npm run dev
learning-react/
├── public/ # Static assets
├── src/ # Source code
│ ├── components/ # React components
│ ├── pages/ # Page components
│ ├── App.jsx # Main app file
│ └── index.js # Entry point
├── tailwind.config.js # Tailwind CSS configuration
├── package.json # Project metadata and dependencies
└── vite.config.js # Vite configuration