Skip to content

Instantly share code, notes, and snippets.

@knowbody
Created August 30, 2017 13:43
Show Gist options
  • Save knowbody/fbc01e9e03b5547075a5c51fddee9750 to your computer and use it in GitHub Desktop.
Save knowbody/fbc01e9e03b5547075a5c51fddee9750 to your computer and use it in GitHub Desktop.
/* @flow */
type UserTitleOptionT = 'Miss' | 'Mrs' | 'Mr' | 'Ms' | 'Dr';
export const USER_TITLE_OPTIONS: Array<{
id: UserTitleOptionT,
value: UserTitleOptionT
}> = [
{ id: 'Miss', value: 'Miss' },
{ id: 'Mrs', value: 'Mrs' },
{ id: 'Mr', value: 'Mr' },
{ id: 'Ms', value: 'Ms' },
{ id: 'Dr', value: 'Dr' }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment