Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created July 18, 2016 21:57
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 brentvatne/0317c3fdea34de5b2282e843ea061ea4 to your computer and use it in GitHub Desktop.
Save brentvatne/0317c3fdea34de5b2282e843ea061ea4 to your computer and use it in GitHub Desktop.
/**
* @providesModule AuthenticationScreen
* @flow
*/
export default class AuthenticationScreen extends React.Component {
render() {
// vvv typo on styles.container, but Flow doesn't care
return (
<View style={styles.continer} />
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment