This commit is contained in:
Dave Richer
2024-03-20 15:11:08 -04:00
parent 922ba4939e
commit 38aef71269
8 changed files with 333 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
import React from "react";
import TaskListContainer from "../../components/task-list/task-list.container.jsx";
export default function TasksPageComponent({bodyshop, currentUser}) {
return (
<div>
<TaskListContainer />
</div>
);
}