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

View File

@ -1,11 +1,11 @@
import styled from '@emotion/styled';
import { CommentForDrawer } from '../types/CommentForDrawer';
import { Comment as CommentType } from '@/activities/types/Comment';
import { CommentHeader } from './CommentHeader';
type CommentProps = {
comment: CommentForDrawer;
comment: Omit<CommentType, 'activityId'>;
actionBar?: React.ReactNode;
};