🎯 What you'll practice: Scaffolding a React project with Vite and the standard folder structure.
1-B 2-B 3-B 4-A | 5 = dev 6 = css 7 = npm create vite@latest my-app -- --template react 8 = It mounts the React component tree (starting with App) into the real DOM element with id="root" in index.html 9 = Vite uses native ES modules and on-demand compilation instead of bundling the whole app upfront, so dev server startup and hot reload are much faster | 10 = Run the scaffold command, cd into the folder, npm install dependencies, npm run dev starts the dev server, main.jsx mounts App.jsx into the #root div in index.html, and the browser renders whatever App.jsx returns.