Add mdx components for guide

This commit is contained in:
Kamran Ahmed
2019-11-02 12:45:15 +04:00
parent b1ee86e1c0
commit 9f38b4b2c8
15 changed files with 767 additions and 43 deletions

View File

@@ -1,3 +1,13 @@
const MdxComponents = {};
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;