Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lazy initial state #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Add lazy initial state #37

wants to merge 1 commit into from

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