Skip to content

Conversation

oowdorg
Copy link

@oowdorg oowdorg commented Jul 23, 2023

Lazy Initial State

Initialization method using Function, similar to useState.

class NoisyGuy {
  constructor(text: string) {
    console.log(text)
  }
}

// ...

const [a] = useLocalStorage<NoisyGuy>("A", new NoisyGuy("run every time! 🙋‍♂️"));
const [b] = useLocalStorage<NoisyGuy>("B", () => new NoisyGuy("run only once. 🙎‍♂️")); // This PR

References: Lazy Initial State

@cusspvz
Copy link

cusspvz commented Aug 11, 2023

Isn't it better for those who need this to use useMemo on the initial parameter?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants