removed unwanted files and new assets added

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 07:39:58 +00:00
committed by GitHub
parent 170520244c
commit 39c092630d
72 changed files with 32 additions and 558 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Text } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
const Home = () => {
return (
<SafeAreaView>
<Text>Home</Text>
</SafeAreaView>
);
};
export default Home;