・node.jsがインストールされているか確認
node -v
・下記だとnode_module、package.jsonなどしか作成されない
npm install react react-dom
・下記だとsrcディレクトリなども作成される
npx create-react-app react_app
・Viteで作成
npm create vite@latest react_app -- --template react
・ViteでTypeScriptファイルを使って作成
npm create vite@latest react_app -- --template react-ts