mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-02-06 07:04:18 +00:00
16 lines
625 B
TypeScript
16 lines
625 B
TypeScript
import TasksForMyOpenProcesses from '../components/TasksForMyOpenProcesses';
|
|
import TasksWaitingForMe from '../components/TasksWaitingForMe';
|
|
import TasksWaitingForMyGroups from '../components/TasksWaitingForMyGroups';
|
|
|
|
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 */}
|
|
<TasksForMyOpenProcesses />
|
|
<TasksWaitingForMe />
|
|
<TasksWaitingForMyGroups />
|
|
</>
|
|
);
|
|
}
|