mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-05-23 21:28:21 +00:00
23 lines
450 B
JavaScript
23 lines
450 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';
|
|
|
|
import CNIPopularityTable from '/shared-files/_cni-popularity.md';
|
|
|
|
export default {
|
|
// Re-use the default mapping
|
|
...MDXComponents,
|
|
|
|
Tabs: Tabs,
|
|
TabItem: TabItem,
|
|
|
|
CardSection,
|
|
Card,
|
|
|
|
CNIPopularityTable,
|
|
};
|