🚀 React Starter Guide (Modern Setup)
This guide helps you quickly get started with React using modern best practices (React 18+, functional components, hooks, and clean architecture).
📦 1. Create a React App
Option A: Vite (Recommended ⚡)
Fast, lightweight, modern.
npm create vite@latest my-app
cd my-app
npm install
npm run dev