mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-08-21 17:32:18 +00:00
19 lines
344 B
JavaScript
19 lines
344 B
JavaScript
// Import the original mapper
|
|
import MDXComponents from '@theme-original/MDXComponents';
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
import { CardSection, Card } from '../components/CardComponents';
|
|
|
|
export default {
|
|
// Re-use the default mapping
|
|
...MDXComponents,
|
|
|
|
Tabs,
|
|
TabItem,
|
|
|
|
CardSection,
|
|
Card,
|
|
};
|