Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- bfs 미로탐색 java
- katalon 사용법
- katalon 자동화
- 주식 양도세 신고방법
- js 자동완성
- javascript 자동완성
- tomcat log
- 테스트 자동화
- Katalon Recorder 사용법
- 국세청 해외주식 양도세 신고방식
- CSTS 폭포수 모델
- 홈택스 해외주식 양도세
- 재귀 예제
- katalon 비교
- 해외증권 양도세 한국투자증권
- katalon xpath
- 해외주식 양도세 신고
- recursion example
- java.sql.SQLSyntaxErrorException
- 톰캣 실시간 로그
- 한국투자증권 해외주식 양도세
- git 연동
- 최대공약수 예제
- 피보나치 예제
- katalon
- oracle group by
- 피보나치함수
- 한국투자증권 양도세 신고
- 피보나치함수 예제
- 재귀함수 예제
Archives
- Today
- Total
엄지월드
Uncaught Error: useRoutes() may be used only in the context of a <Router> component. 본문
Front/React
Uncaught Error: useRoutes() may be used only in the context of a <Router> component.
킨글 2023. 2. 11. 12:27Uncaught Error: useRoutes() may be used only in the context of a <Router> component.
App.js에서 Routes를 설정해주었는데, 위에 에러가 발생하였다.
import { Route, Routes } from 'react-router-dom';
import './App.css';
import Board from './Board';
function App() {
return (
// <Login />
<Routes>
<Route>
<Route path="/list" element={<Board />} />
</Route>
</Routes>
);
}
export default App;
해결 방법은 index.js에 <BrowserRouter>을 추가해주면 된다.
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<BrowserRouter>
<App />
</BrowserRouter>
);
reportWebVitals();
'Front > React' 카테고리의 다른 글
[React] Warning: Each child in a list should have a unique "key" prop. (0) | 2024.05.23 |
---|---|
React 기본 문법 알아보기 (0) | 2024.02.21 |
Comments