Files
cally/app/(unauth)/index.tsx
Milan Paunovic 7ab2fe7906 Init date fix
2024-09-27 19:45:32 +02:00

10 lines
236 B
TypeScript

import Entry from "@/components/pages/main/Entry";
import {SafeAreaView} from "react-native-safe-area-context";
export default function Screen() {
return (
<SafeAreaView>
<Entry/>
</SafeAreaView>
)
}