todosLists/Screen/TodoListsScreen.js

11 lines
172 B
JavaScript
Raw Permalink Normal View History

2022-02-11 08:58:55 +01:00
import React from 'react'
import { Text, View } from 'react-native'
export default function App() {
return (
<>
2022-02-24 12:55:27 +01:00
<Text>Liste des TodoList</Text>
2022-02-11 08:58:55 +01:00
</>
);
}