123456789101112131415161718192021 |
- import React, { useEffect, useState } from 'react';
- import { ActivityIndicator, FlatList, Text, TouchableOpacity, View } from 'react-native';
- import { globalStyles } from '../styles/global';
- import Card from '../shared/card';
-
- export default App = () => {
- const [isLoading, setLoading] = useState(true);
- const [Description, setDescription] = useState([]); // this is looking for 'Description' and it's content
- const [Mocion, setMocion] = useState([]); // this is looking for 'Mocion' and it's content
- const [PIN, setPIN] = useState([]); // this is looking for 'PIN' and it's content
-
-
- // this is for displaying the mocion on the screen
- return (
- <View style={{ flex: 1, padding: 24 }}>
-
- <Text>{Mocion}</Text>
- <Text>{Description}</Text>
- </View>
- );
- };
|