Files
developer-roadmap/components/md-renderer/mdx-components/index.js

24 lines
515 B
JavaScript
Raw Normal View History

2019-11-02 12:45:15 +04:00
import P from './p';
import { Headings } from './heading';
import { Pre } from './pre';
2019-11-02 17:50:57 +04:00
import BlockQuote from './blockquote';
2019-11-02 14:40:34 +04:00
import { Table } from './table';
import { IFrame } from './iframe';
import { Img } from './img';
2019-11-02 17:50:57 +04:00
import EnrichedLink from './a';
2020-03-01 10:27:15 +04:00
import { BadgeLink } from '../../link/badge-link';
2019-11-02 12:45:15 +04:00
const MdxComponents = {
p: P,
...Headings,
pre: Pre,
blockquote: BlockQuote,
2019-11-02 17:50:57 +04:00
a: EnrichedLink,
2019-11-02 14:40:34 +04:00
table: Table,
iframe: IFrame,
img: Img,
2020-03-01 10:27:15 +04:00
BadgeLink: BadgeLink
2019-11-02 12:45:15 +04:00
};
2019-11-01 20:51:32 +04:00
2020-03-01 10:27:15 +04:00
export default MdxComponents;