Explorar o código

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

ryoji-s %!s(int64=3) %!d(string=hai) anos
pai
achega
3f2a77af99
Modificáronse 1 ficheiros con 0 adicións e 18 borrados
  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';