Pages added

This commit is contained in:
Olu Amey
2023-01-25 13:20:56 -05:00
parent d096e33bc0
commit 33caedd8aa
11 changed files with 2514 additions and 191 deletions
+18
View File
@@ -0,0 +1,18 @@
import React from "react";
import HistoryAnalyticsCard from "../Cards/HistoryAnalyticsCard";
import Layout from "../Partials/Layout";
import ReminderTable from "./ReminderTable";
export default function Reminders() {
return (
<>
<Layout>
<div className="history-wrapper w-full mb-10">
<div className="main-wrapper w-full">
<ReminderTable />
</div>
</div>
</Layout>
</>
);
}