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
File diff suppressed because it is too large Load Diff
+17
View File
@@ -0,0 +1,17 @@
import React from "react";
import Layout from "../Partials/Layout";
import CalendarTable from "./CalendarTable";
export default function Calendar() {
return (
<>
<Layout>
<div className="history-wrapper w-full mb-10">
<div className="main-wrapper w-full">
<CalendarTable />
</div>
</div>
</Layout>
</>
);
}