Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mefengl/react-router-note
https://github.com/mefengl/react-router-note
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mefengl/react-router-note
- Owner: mefengl
- License: mit
- Created: 2023-05-24T09:03:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-24T09:07:09.000Z (over 1 year ago)
- Last Synced: 2024-10-30T10:15:42.314Z (about 2 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-router-note
## useParams
https://reactrouter.com/en/main/route/route#dynamic-segments
```javascript
// path = "/detail/:id"const { id } = useParams();
```