Skip to content

Instantly share code, notes, and snippets.

@ckoster22
Last active August 6, 2017 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckoster22/7db788d4e14c6c879335d1f448811b25 to your computer and use it in GitHub Desktop.
Save ckoster22/7db788d4e14c6c879335d1f448811b25 to your computer and use it in GitHub Desktop.
type User = {
login: string,
avatarUrl: string
};
type PageState = {
users?: User[],
hasRetrievedData: boolean,
activelyRetrieving: boolean,
error?: string
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment