mirror of
https://github.com/urosran/cally.git
synced 2025-07-09 22:57:16 +00:00
22 lines
608 B
TypeScript
22 lines
608 B
TypeScript
import React from "react";
|
|
import {View,} from "react-native-ui-lib";
|
|
import HeaderTemplate from "@/components/shared/HeaderTemplate";
|
|
import {InnerCalendar} from "@/components/pages/calendar/InnerCalendar";
|
|
|
|
export default function CalendarPage() {
|
|
return (
|
|
<View
|
|
style={{flex: 1, height: "100%", padding: 10}}
|
|
paddingH-22
|
|
paddingT-0
|
|
>
|
|
<HeaderTemplate
|
|
message={"Let's get your week started !"}
|
|
isWelcome
|
|
isCalendar={true}
|
|
/>
|
|
<InnerCalendar/>
|
|
</View>
|
|
);
|
|
}
|