2022-11-11 16:31:48 -05:00
|
|
|
import TasksForMyOpenProcesses from '../components/TasksForMyOpenProcesses';
|
2022-11-14 12:06:39 -05:00
|
|
|
import TasksWaitingForMe from '../components/TasksWaitingForMe';
|
2022-11-23 08:39:25 -05:00
|
|
|
import TasksWaitingForMyGroups from '../components/TasksWaitingForMyGroups';
|
2022-11-11 16:31:48 -05:00
|
|
|
|
|
|
|
export default function GroupedTasks() {
|
|
|
|
return (
|
|
|
|
<>
|
2022-11-25 10:23:00 -05:00
|
|
|
{/* be careful moving these around since the first two have with-large-bottom-margin in order to get some space between the three table sections */}
|
2022-11-11 16:31:48 -05:00
|
|
|
<TasksForMyOpenProcesses />
|
2022-11-14 12:06:39 -05:00
|
|
|
<TasksWaitingForMe />
|
2022-11-23 08:39:25 -05:00
|
|
|
<TasksWaitingForMyGroups />
|
2022-11-11 16:31:48 -05:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|