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
5 years ago
|
import P from './p';
|
||
|
import { Headings } from './heading';
|
||
|
import { Pre } from './pre';
|
||
5 years ago
|
import BlockQuote from './blockquote';
|
||
5 years ago
|
import { Table } from './table';
|
||
|
import { IFrame } from './iframe';
|
||
|
import { Img } from './img';
|
||
5 years ago
|
import EnrichedLink from './a';
|
||
5 years ago
|
|
||
|
const MdxComponents = {
|
||
|
p: P,
|
||
|
...Headings,
|
||
|
pre: Pre,
|
||
|
blockquote: BlockQuote,
|
||
5 years ago
|
a: EnrichedLink,
|
||
5 years ago
|
table: Table,
|
||
|
iframe: IFrame,
|
||
|
img: Img,
|
||
5 years ago
|
};
|
||
5 years ago
|
|
||
|
export default MdxComponents;
|