diff --git a/packages/local-storage/docs/useLocalStorage.md b/packages/local-storage/docs/useLocalStorage.md index 3adc5aa..e1008ea 100644 --- a/packages/local-storage/docs/useLocalStorage.md +++ b/packages/local-storage/docs/useLocalStorage.md @@ -11,7 +11,7 @@ order: 2 # useLocalStorage -Retrieve value from `localStorage` by key, also returns a function to update it. +Retrieve value from `localStorage` by key, also returns a function to update it. Value could be any type which can be handled by `JSON.stringify`. ```typescript function useLocalStorage(key: string, initialValue: T): [T, (value: T) => void]