16 lines
625 B
TypeScript
Raw Normal View History

2022-11-11 16:31:48 -05:00
import TasksForMyOpenProcesses from '../components/TasksForMyOpenProcesses';
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 (
<>
{/* 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. */}
{/* i wish Stack worked to add space just between top-level elements */}
2022-11-11 16:31:48 -05:00
<TasksForMyOpenProcesses />
<TasksWaitingForMe />
2022-11-23 08:39:25 -05:00
<TasksWaitingForMyGroups />
2022-11-11 16:31:48 -05:00
</>
);
}