mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
10 lines
236 B
TypeScript
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>
|
|
)
|
|
} |