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
- click and drag
- 2022
- TSDoc
- JS console
- 성능최적화
- react
- 누구나 자료구조와 알고리즘
- 티스토리꾸미기
- vue.js
- React Native
- Chart.js
- 개발콘텐츠
- CSS
- 공통컴포넌트
- React.js
- reactjs
- const 단언문
- 반복줄이기
- 제네릭
- NonNullable
- utilty type
- 커스텀
- 레이아웃쪼개기
- javascript
- 타입좁히기
- 폰트적용하기
- returnType
- 타입스크립트
- 리액트
- typescript
Archives
- Today
- Total
목록router (1)
몽땅뚝딱 개발자
[React] router / Link 태그 / useParams() 사용하기
◽ 설치하기 npm i react-router-dom@6 ◽ Router 사용하기 📄 index.js 태그로 감싸준다. import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; import { BrowserRouter } from "react-router-dom"; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( ); // If you want to start measuring ..
Development/React.js · Next.js
2022. 9. 5. 08:34