14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
import {StyleSheet} from 'react-native';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'white',
|
|
justifyContent: 'center',
|
|
},
|
|
});
|
|
|
|
export default styles;
|