12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
import React from 'react';
|
|
import MDXComponents from '@theme-original/MDXComponents';
|
|
import Highlight from '@/components/Highlight';
|
|
import TypeformEmbed from '@/components/TypeForm';
|
|
|
|
export default {
|
|
// Re-use the default mapping
|
|
...MDXComponents,
|
|
Highlight,
|
|
TypeformEmbed,
|
|
};
|