From 9a269b573201d8a020da060c28c5c673f5ee353d Mon Sep 17 00:00:00 2001 From: "DESKTOP-BC3NEC6\\chiefsoft" Date: Sat, 28 Jan 2023 22:27:03 -0500 Subject: [PATCH] Addreminder --- src/components/Reminders/index.jsx | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/src/components/Reminders/index.jsx b/src/components/Reminders/index.jsx index 032df13..a36ba00 100644 --- a/src/components/Reminders/index.jsx +++ b/src/components/Reminders/index.jsx @@ -1,12 +1,29 @@ -import React from "react"; -import HistoryAnalyticsCard from "../Cards/HistoryAnalyticsCard"; -import Layout from "../Partials/Layout"; -import ReminderTable from "./ReminderTable"; +import React from 'react' +import HistoryAnalyticsCard from '../Cards/HistoryAnalyticsCard' +import Layout from '../Partials/Layout' +import ReminderTable from './ReminderTable' +import { Link } from 'react-router-dom' export default function Reminders() { return ( <> +
+
+
+
+
+ + Add Reminder + +
+
+
+
+
@@ -14,5 +31,5 @@ export default function Reminders() {
- ); + ) }