summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/banner.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/admin_console/banner.jsx')
-rw-r--r--webapp/components/admin_console/banner.jsx39
1 files changed, 0 insertions, 39 deletions
diff --git a/webapp/components/admin_console/banner.jsx b/webapp/components/admin_console/banner.jsx
deleted file mode 100644
index 6395ef4a1..000000000
--- a/webapp/components/admin_console/banner.jsx
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-import PropTypes from 'prop-types';
-import {FormattedMessage} from 'react-intl';
-
-export default function Banner(props) {
- let title = (
- <FormattedMessage
- id='admin.banner.heading'
- defaultMessage='Note:'
- />
- );
-
- if (props.title) {
- title = props.title;
- }
-
- return (
- <div className='banner'>
- <div className='banner__content'>
- <h4 className='banner__heading'>
- {title}
- </h4>
- <p>
- {props.description}
- </p>
- </div>
- </div>
- );
-}
-
-Banner.defaultProps = {
-};
-Banner.propTypes = {
- title: PropTypes.node,
- description: PropTypes.node.isRequired
-};