현재 폴더에 react 설치
npx create-react-app .
npm install (react 설치시 내장됨)
npm install react-router-dom
npm install sass
*오류 발생시
npm install -g node-gyp
npm install node-sass
<BrowserRouter>
<Header />
<Routes>
<Route path='/' element={<Main />}></Route>
</Routes>
<Footer />
</BrowserRouter>
BrowserRouter >Routes >Route 구조
<Route path="파일명" element={<컴포넌트명 />} />