mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-22 03:01:19 +00:00
31 lines
840 B
JavaScript
31 lines
840 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';
|
|
import DeprecationOPAGatekeeper from '/shared-files/_deprecation-opa-gatekeeper.md';
|
|
import DeprecationWeave from '/shared-files/_deprecation-weave.md';
|
|
import DeprecationHelm2 from '/shared-files/_deprecation-helm2.md';
|
|
import DockerSupportWarning from '/shared-files/_docker-support-warning.md';
|
|
|
|
export default {
|
|
// Re-use the default mapping
|
|
...MDXComponents,
|
|
|
|
Tabs: Tabs,
|
|
TabItem: TabItem,
|
|
|
|
CardSection,
|
|
Card,
|
|
|
|
CNIPopularityTable,
|
|
DeprecationOPAGatekeeper,
|
|
DeprecationWeave,
|
|
DeprecationHelm2,
|
|
DockerSupportWarning,
|
|
};
|