Skip to content

Instantly share code, notes, and snippets.

@arekko
Created January 4, 2020 08:39
Show Gist options
  • Save arekko/7d080d41527b832c9939dd8529194075 to your computer and use it in GitHub Desktop.
Save arekko/7d080d41527b832c9939dd8529194075 to your computer and use it in GitHub Desktop.
useLocalStorage hook implementation
export (key, initialValue) => {
const [value, setValue] = useState(() => {
return localStorage.getItem(key) || initialValue
})
useEffect(() => {
localStorage.setItem(key, value)
}, [value])
return [value, setValue]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment