Skip to content

Instantly share code, notes, and snippets.

@guillaumewuip
Created November 12, 2020 07:03
Show Gist options
  • Save guillaumewuip/bbf14ed3887690ce92c533052f5decda to your computer and use it in GitHub Desktop.
Save guillaumewuip/bbf14ed3887690ce92c533052f5decda to your computer and use it in GitHub Desktop.
State and Store in frontend codebase - State example - user
export type User = {
id: string;
firstName: string;
lastName: string;
picture?: string;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment