Migrate activities (#2545)

* Start

* Migrate activities to flexible schema
This commit is contained in:
Charles Bochet
2023-11-16 17:10:22 +01:00
committed by GitHub
parent 7da18a13e8
commit dee38bb901
69 changed files with 518 additions and 1479 deletions
@@ -1,13 +1,13 @@
import { ReactElement } from 'react';
import styled from '@emotion/styled';
import { TaskForList } from '@/activities/types/TaskForList';
import { Activity } from '@/activities/types/Activity';
import { TaskRow } from './TaskRow';
type TaskListProps = {
title?: string;
tasks: TaskForList[];
tasks: Omit<Activity, 'assigneeId'>[];
button?: ReactElement | false;
};