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

https://github.com/d3portillo/useparams

useParams React hook playground to consume and manipulate query-strings
https://github.com/d3portillo/useparams

Last synced: 6 months ago
JSON representation

useParams React hook playground to consume and manipulate query-strings

Awesome Lists containing this project

README

          




useparams: A tiny System consistent < 1KB React hook to consume and manipulate query string params.

## Install

```sh
npm i useparams

```

## Usage

```js
const params = useParams({ aNumber: 1 })
console.log(params.aNumber) // 1

```