diff options
author | 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> | 2024-01-27 01:22:54 +0900 |
---|---|---|
committer | 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> | 2024-01-27 01:22:54 +0900 |
commit | 65350c0839bf5cbbdd128d645018a0f5f07ac14f (patch) | |
tree | 11fbb7ef222526e9e3095ba3bc8652061eb5b168 /src/theme/Admonition/index.js | |
parent | cc128057af3c0805f0c5d26e6a915690d37e2187 (diff) |
initial commit
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) { |