16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import React from 'react'
|
|
import { StyleSheet, View } from 'react-native'
|
|
|
|
export default function SignupScreen() {
|
|
return <View style={styles.container}></View>
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#25292e',
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
}
|
|
})
|