@rooks/use-sessionstorage-state
Version:
useState but syncs with sessionstorage
51 lines (31 loc) • 1.39 kB
Markdown
# @rooks/use-sessionstorage-state
## *Note: Future updates to this package have moved to the main package* [rooks](https://npmjs.com/package/rooks). All hooks now reside in a single package which you can install using
```
npm install rooks
```
or
```
yarn add rooks
```
Rooks is completely treeshakeable and if you use only 1 of the 50+ hooks in the package, only that hook will be bundled with your code. Your bundle will only contain the hooks that you need. Cheers!

[](https://travis-ci.org/imbhargav5/rooks)    
## About
useState but syncs with sessionstorage
[//]: # (Main)
## Installation
```
npm install --save @rooks/use-sessionstorage-state
```
## Importing the hook
```javascript
import useSessionstorageState from "@rooks/use-sessionstorage-state"
```
## Usage
```jsx
function Demo() {
useSessionstorageState();
return null
}
render(<Demo/>)
```