import React from 'react-native'; import GlobalStyles from '../../settings/styles'; import Modal from 'react-native-modalbox'; const { StyleSheet, Text, View, } = React; const styles = StyleSheet.create({ modal: { justifyContent: 'center', alignItems: 'center', backgroundColor: GlobalStyles.get('CIRCLE_GREY_DARK'), height: 200 }, title: { fontSize: 18, color: 'white' }, text: { fontSize: 13, color: 'white', margin: 2, textAlign: 'center' }, dismiss: { fontSize: 12, padding: 5 }, modalView: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 10 } }); export default class Login extends React.Component { render() { return ( What is a token? A token is the identifier used to authenticate with CircleCI and let the app control your account. To generate a new token, visit your CircleCI accounts page. Swipe down to dismiss ); } };