Skip to content

Commit

Permalink
fix: merge conflict
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <tukon479@gmail.com>
  • Loading branch information
Innei committed Aug 10, 2022
1 parent f31fbb3 commit cf85862
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/universal/Markdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { useStore } from '~/store'
import { isDev } from '~/utils/env'
import { springScrollToElement } from '~/utils/spring'

import { CodeBlock } from '../CodeBlock'
import { BiListNested } from '../Icons/shared'
import { useModalStack } from '../Modal/stack.context'
import styles from './index.module.css'
Expand Down
13 changes: 13 additions & 0 deletions src/components/universal/Markdown/renderers/table.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { FC } from 'react'

export const MTableHead: FC = (props) => {
return <thead>{props.children}</thead>
}

export const MTableRow: FC = (props) => {
return <tr>{props.children}</tr>
}

export const MTableBody: FC = (props) => {
return <tbody>{props.children}</tbody>
}

0 comments on commit cf85862

Please sign in to comment.