Skip to content

Commit 49a60b0

Browse files
committed
chore(): restore plq namespace
1 parent b6d88ac commit 49a60b0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Persists the state to localStorage, sessionStorage or anything else that impleme
55
## Example
66

77
```jsx
8-
import createPersistedState from '@Akurganow/use-persisted-state'
8+
import createPersistedState from '@plq/use-persisted-state'
99

1010
const [usePersistedState] = createPersistedState('example')
1111

@@ -25,14 +25,14 @@ export default function App() {
2525

2626
Little bit closer to real life:
2727

28-
[![Edit @Akurganow/use-persisted-state](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/plquse-persisted-state-ob2od?fontsize=14)
28+
[![Edit @plq/use-persisted-state](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/plquse-persisted-state-ob2od?fontsize=14)
2929

3030
## Requirement
31-
To use `@Akurganow/use-persisted-state`, you must use `[email protected]` or greater which includes Hooks.
31+
To use `@plq/use-persisted-state`, you must use `[email protected]` or greater which includes Hooks.
3232

3333
## Clear Storage
3434
```jsx
35-
import createPersistedState from '@Akurganow/use-persisted-state'
35+
import createPersistedState from '@plq/use-persisted-state'
3636

3737
const [usePersistedState, clear] = createPersistedState('example')
3838

@@ -53,7 +53,7 @@ export default function App() {
5353

5454
## Use sessionStorage
5555
```jsx
56-
import createPersistedState from '@Akurganow/use-persisted-state'
56+
import createPersistedState from '@plq/use-persisted-state'
5757

5858
const [usePersistedState] = createPersistedState('example', window.sessionStorage)
5959

@@ -72,7 +72,7 @@ export default function App() {
7272
```
7373
## Use custom storage
7474
```jsx
75-
import createPersistedState from '@Akurganow/use-persisted-state'
75+
import createPersistedState from '@plq/use-persisted-state'
7676

7777
const myStorage = {
7878
getItem: (key) => getItemFromSomeStorage(key)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@Akurganow/use-persisted-state",
2+
"name": "@plq/use-persisted-state",
33
"version": "0.1.0",
44
"description": "useState hook with persistance in storage",
55
"main": "lib/index.js",

0 commit comments

Comments
 (0)