diff options
Diffstat (limited to 'src/theme/Admonition/index.js')
-rw-r--r-- | src/theme/Admonition/index.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/theme/Admonition/index.js b/src/theme/Admonition/index.js index c66baaea..a6ecab74 100644 --- a/src/theme/Admonition/index.js +++ b/src/theme/Admonition/index.js @@ -1,12 +1,6 @@ -/** - * 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. - */ import React from 'react'; import {processAdmonitionProps} from '@docusaurus/theme-common'; -import AdmonitionTypes from './Types'; +import AdmonitionTypes from '@theme/Admonition/Types'; function getAdmonitionTypeComponent(type) { const component = AdmonitionTypes[type]; if (component) { |