Reminder add routing

This commit is contained in:
2023-02-02 07:21:48 -05:00
parent 3476a8e7f0
commit 3789a8d9cb
2 changed files with 12 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import Reminders from "../components/Reminders";
export default function RemindersAddPage() {
return (
<>
<Reminders />
</>
);
}