Calendar Page

This commit is contained in:
Olu Amey
2023-01-25 14:53:17 -05:00
parent fee958f0b0
commit 9fad884632
8 changed files with 1097 additions and 161 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Calendar from "../components/Calendar";
export default function CalendarPage() {
return (
<>
<Calendar />
</>
);
}