mirror of
https://github.com/urosran/cally.git
synced 2025-07-09 22:57:16 +00:00
16 lines
346 B
TypeScript
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>
|
|
);
|
|
}
|