From 5c26e9b92b0fcdd34905719547a9c1d67742dc7f Mon Sep 17 00:00:00 2001 From: Justin Shillingford Date: Mon, 29 Jun 2020 16:21:43 -0400 Subject: Created StyleSheet for Registration.tsx The Linter was bothering me lol --- src/screens/Registration.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/screens/Registration.tsx b/src/screens/Registration.tsx index 44658591..57b0eb18 100644 --- a/src/screens/Registration.tsx +++ b/src/screens/Registration.tsx @@ -1,14 +1,24 @@ import React from 'react'; -import {View, Text} from 'react-native'; +import {View, Text, StyleSheet} from 'react-native'; interface RegistrationProps {} const Registration: React.FC = ({}) => { return ( - - Registration sequence begins here! + + Registration sequence begins here! ); }; +const styles = StyleSheet.create({ + view: { + flex: 1, + alignSelf: 'center', + justifyContent: 'center', + }, + text: { + fontSize: 18, + }, +}); export default Registration; -- cgit v1.2.3-70-g09d2