React Locastorage hook across components & tabs
npm install react-use-localstorage-hook```
npm i react-use-localstorage-hook
Example of code:
` javascript
import useLocalStorage from "react-use-localstorage-hook";
function Input() {
const [value, setValue] = useLocalStorage("test:input", "input text");
return (
<>
Advanced example in this demo:
