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: 300 }, title: { fontSize: 18, color: 'white' }, text: { fontSize: 13, color: 'white' }, modalView: { flex: 1, justifyContent: 'center', alignItems: 'center', } }); export default class Login extends React.Component { render() { return ( What is a token? A token is a thing. Swipe down to dismiss ); } };