Files
cally/components/pages/calendar/CalendarPage.tsx
2025-02-02 22:28:40 +01:00

16 lines
346 B
TypeScript

import React from "react";
import { View } from "react-native-ui-lib";
import { InnerCalendar } from "@/components/pages/calendar/InnerCalendar";
export default function CalendarPage() {
return (
<View
style={{ flex: 1, height: "100%", padding: 0 }}
paddingH-0
paddingT-0
>
<InnerCalendar />
</View>
);
}