소스 검색

Merge branch 'feat/rich-attachment' into feat/rich-attachment-imprv-delete-modal

ryoji-s 3 년 전
부모
커밋
3f2a77af99
1개의 변경된 파일0개의 추가작업 그리고 18개의 파일을 삭제
  1. 0 18
      packages/app/src/components/ReactMarkdownComponents/Table.tsx

+ 0 - 18
packages/app/src/components/ReactMarkdownComponents/Table.tsx

@@ -1,18 +0,0 @@
-import React from 'react';
-
-type TableProps = {
-  children: React.ReactNode,
-  className?: string
-}
-
-export const Table = React.memo((props: TableProps): JSX.Element => {
-
-  const { children, className } = props;
-
-  return (
-    <table className={className}>
-      {children}
-    </table>
-  );
-});
-Table.displayName = 'Table';