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
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Reminders from "../components/Reminders";
export default function RemindersPage() {
return (
<>
<Reminders />
</>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Tracking from "../components/Tracking";
export default function TrackingPage() {
return (
<>
<Tracking />
</>
);
}