1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-28 01:49:00 +02:00
Files
developer-roadmap/components/mdx-components/index.js
2019-11-02 12:45:15 +04:00

13 lines
250 B
JavaScript

import P from './p';
import { Headings } from './heading';
import { Pre } from './pre';
import { BlockQuote } from './blockquote';
const MdxComponents = {
p: P,
...Headings,
pre: Pre,
blockquote: BlockQuote,
};
export default MdxComponents;