React Get Started
// Terminal commands (not JSX) - run these to scaffold a project:
// npm create vite@latest my-app -- --template react
// cd my-app
// npm install
// npm run dev
function SetupNote() {
return <p>Run the commands above in your terminal to scaffold a project.</p>;
}
export default SetupNote;