My task page added

This commit is contained in:
Olu Amey
2023-02-07 09:14:01 -05:00
parent af0dee7acd
commit 23f16b742a
7 changed files with 1376 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import MyTasks from "../components/MyTasks";
export default function MyTaskPage() {
return (
<>
<MyTasks />
</>
);
}