[MAILPOET-5755]
This commit is contained in:
 Ján Mikláš
2024-06-19 09:19:08 +02:00
committed by Ján Mikláš
parent 6155053f91
commit fe5010110b

View File

@@ -1,12 +1,12 @@
import { MailPoet } from 'mailpoet'; import { MailPoet } from 'mailpoet';
import { import {
TasksListDataRow, TasksListDataRow,
Props as TasksListLabelsRowProps, Props as TasksListDataRowProps,
} from './tasks-list-data-row'; } from './tasks-list-data-row';
import { TasksListLabelsRow } from './tasks-list-labels-row'; import { TasksListLabelsRow } from './tasks-list-labels-row';
type Props = { type Props = {
tasks: TasksListLabelsRowProps['task'][]; tasks: TasksListDataRowProps['task'][];
type: string; type: string;
}; };
function TasksList({ tasks, type }: Props): JSX.Element { function TasksList({ tasks, type }: Props): JSX.Element {