Created
November 12, 2020 07:03
-
-
Save guillaumewuip/bbf14ed3887690ce92c533052f5decda to your computer and use it in GitHub Desktop.
State and Store in frontend codebase - State example - user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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