fix naming collision

pull/26459/head^2
Paul Wackerow 2 years ago
parent cf0dab7ce0
commit 0ab1fdcb9d
No known key found for this signature in database
GPG Key ID: BB63E296FE9CAB8D
  1. 4
      src/components/MDXComponents.tsx

@ -36,7 +36,7 @@ SyntaxHighlighter.registerLanguage('swift', swift);
const { header1, header2, header3, header4 } = textStyles;
const Table = ({ children }: any) => (
const MdTable = ({ children }: any) => (
<Flex maxW='100vw' overflowX='scroll'>
<Table
variant='striped'
@ -160,7 +160,7 @@ const MDXComponents = {
);
},
// tables
table: Table,
table: MdTable,
// pre
pre: ({ children }: any) => {
return (

Loading…
Cancel
Save