From 1870fc1790717e7a9d9e2c946fab99c3d4af316f Mon Sep 17 00:00:00 2001 From: isaacwsolomon <isaacwsolomon@gmail.com> Date: Sun, 11 May 2025 20:18:09 +0200 Subject: [PATCH] Added list.tsx to app\screens --- app/screens/list.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/screens/list.tsx diff --git a/app/screens/list.tsx b/app/screens/list.tsx new file mode 100644 index 0000000..a1478ae --- /dev/null +++ b/app/screens/list.tsx @@ -0,0 +1,11 @@ +import React from 'react'; + +const List = () => { + return ( + <View> + <Text>List</Text> + </View> + ); +}; + +export default List; \ No newline at end of file -- GitLab