Przeglądaj źródła

refactor table tsx

jam411 3 lat temu
rodzic
commit
9c07a11b61

+ 1 - 1
packages/app/src/components/ReactMarkdownComponents/Table.tsx

@@ -10,7 +10,7 @@ export const Table = React.memo((props: TableProps): JSX.Element => {
   const { children, className } = props;
 
   return (
-    <table className={`${className}`}>
+    <table className={className}>
       {children}
     </table>
   );