Lukkyz
Results
2
comments of
Lukkyz
Sorry, I will try to explain it better. When a page is loaded I want to add a key in the object "hello" on the storage. But the console.log(hello) in...
For more clarity : ``` const Content = () => { const [hello, setHello] = useStorage("hello", (v) => { console.log("A", v) return v === undefined ? {} : v })...