index.js 458 B

1234567891011121314151617181920
  1. import { Link } from "expo-router";
  2. import { Text, View } from "react-native";
  3. export default function Index() {
  4. return (
  5. <View style={{
  6. flex:1,
  7. backgroundColor: 'yellow',
  8. justifyContent: 'center',
  9. alignItems: 'center'
  10. }}>
  11. <Text style={{
  12. fontSize: 30,
  13. }}>
  14. Tela Inicial
  15. </Text>
  16. </View>
  17. )
  18. }