summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage/components/backstage_header.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/backstage/components/backstage_header.jsx')
-rw-r--r--webapp/components/backstage/components/backstage_header.jsx41
1 files changed, 0 insertions, 41 deletions
diff --git a/webapp/components/backstage/components/backstage_header.jsx b/webapp/components/backstage/components/backstage_header.jsx
deleted file mode 100644
index 68d5590a6..000000000
--- a/webapp/components/backstage/components/backstage_header.jsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-export default class BackstageHeader extends React.Component {
- static get propTypes() {
- return {
- children: PropTypes.node
- };
- }
-
- render() {
- const children = [];
-
- React.Children.forEach(this.props.children, (child, index) => {
- if (index !== 0) {
- children.push(
- <span
- key={'divider' + index}
- className='backstage-header__divider'
- >
- <i className='fa fa-angle-right'/>
- </span>
- );
- }
-
- children.push(child);
- });
-
- return (
- <div className='backstage-header'>
- <h1>
- {children}
- </h1>
- </div>
- );
- }
-}