Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mefengl/react-router-note


https://github.com/mefengl/react-router-note

Last synced: 10 days ago
JSON representation

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();
```