diff --git a/client/components/projects/comment.tsx b/client/components/projects/comment.tsx deleted file mode 100644 index 5da2eb7..0000000 --- a/client/components/projects/comment.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; - -import { Comment as CommentType } from './types'; - -interface Props { - data: CommentType; -} - -const Comment = ({ data }: Props) => { - return ( - <> - <h6>{data.text} </h6> - <p>{data.createdAt}</p> - <p>person id: {data.personName}</p> - </> - ); -}; - -export default Comment;