You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
582 B
28 lines
582 B
import { StatusBar } from 'expo-status-bar';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
import CalendarTests from "./views/CalendarTests";
|
|
|
|
export default function App() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<CalendarTests style={styles.calendar}/>
|
|
<StatusBar style="auto" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
calendar: {
|
|
flex: 1,
|
|
width: '100%',
|
|
height: '33%',
|
|
alignSelf: "stretch"
|
|
}
|
|
});
|