You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/app/index.tsx

21 lines
360 B

import {SafeAreaView, Text, View} from "react-native";
import Navigation from "@/src/navigation/navigation";
import HomeScreen from "@/src/screen/HomeScreen";
export default function Index() {
return (
<View>
<App/>
</View>
);
}
function App() {
return (
<View>
<SafeAreaView>
</SafeAreaView>
</View>
);
}