2
0
Эх сурвалжийг харах

Merge pull request #7535 from weseek/feat/delete-table-tsx

feat: Delete Table.tsx
Ryoji Shimizu 3 жил өмнө
parent
commit
b2fcc49195

+ 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';