computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
440 B
21 lines
440 B
import P from './p'; |
|
import { Headings } from './heading'; |
|
import { Pre } from './pre'; |
|
import BlockQuote from './blockquote'; |
|
import { Table } from './table'; |
|
import { IFrame } from './iframe'; |
|
import { Img } from './img'; |
|
import EnrichedLink from './a'; |
|
|
|
const MdxComponents = { |
|
p: P, |
|
...Headings, |
|
pre: Pre, |
|
blockquote: BlockQuote, |
|
a: EnrichedLink, |
|
table: Table, |
|
iframe: IFrame, |
|
img: Img, |
|
}; |
|
|
|
export default MdxComponents; |