16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
|
import { FlatList, ScrollView } from 'react-native'
|
||
|
import { ThemedText } from '@/components/ThemedText'
|
||
|
import { ThemedView } from '@/components/ThemedView'
|
||
|
// import * as SecureStore from 'expo-secure-store'
|
||
|
|
||
|
export default function HistoryScreen() {
|
||
|
// const token = SecureStore.getItem("apiToken")
|
||
|
return (
|
||
|
<ScrollView>
|
||
|
<ThemedView>
|
||
|
<FlatList data={["Se connecter à l'API"]} renderItem={({item}) => <ThemedText>{item}</ThemedText>} />
|
||
|
</ThemedView>
|
||
|
</ScrollView>
|
||
|
)
|
||
|
}
|