mirror of
https://github.com/urosran/cally.git
synced 2025-07-10 23:27:18 +00:00
21 lines
477 B
TypeScript
21 lines
477 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
|
|
>
|
|
{/*<HeaderTemplate
|
|
message={"Let's get your week started !"}
|
|
isWelcome
|
|
isCalendar={true}
|
|
/>*/}
|
|
<InnerCalendar />
|
|
</View>
|
|
);
|
|
}
|