mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-28 01:49:00 +02:00
13 lines
250 B
JavaScript
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; |