1
0
Fork 0
blog/src/components/templates/Post/Toc.tsx

18 lines
324 B
TypeScript
Raw Normal View History

2020-05-22 14:38:19 +02:00
import React, { ReactElement } from 'react'
import * as styles from './Toc.module.css'
2019-11-08 20:47:23 +01:00
2020-05-22 14:38:19 +02:00
const PostToc = ({
tableOfContents
}: {
tableOfContents: string
}): ReactElement => {
2019-11-08 20:47:23 +01:00
return (
<nav
className={styles.toc}
2019-11-08 20:47:23 +01:00
dangerouslySetInnerHTML={{ __html: tableOfContents }}
/>
)
}
export default PostToc