mirror of
https://github.com/clearml/clearml-docs
synced 2025-03-31 07:36:23 +00:00
20 lines
581 B
JavaScript
20 lines
581 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
// Import the original mapper
|
|
import MDXComponents from '@theme-original/MDXComponents';
|
|
import Collapsible from '../components/Collapsible';
|
|
|
|
export default {
|
|
// Re-use the default mapping
|
|
...MDXComponents,
|
|
// Map the "collapsible" tag to our <Collapsible /> component!
|
|
// `Collapsible` will receive all props that were passed to `collapsible` in MDX
|
|
Collapsible,
|
|
}; |