summaryrefslogtreecommitdiffstats
path: root/webapp/components/loading_screen.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/loading_screen.jsx')
-rw-r--r--webapp/components/loading_screen.jsx51
1 files changed, 0 insertions, 51 deletions
diff --git a/webapp/components/loading_screen.jsx b/webapp/components/loading_screen.jsx
deleted file mode 100644
index e4821c07b..000000000
--- a/webapp/components/loading_screen.jsx
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {FormattedMessage} from 'react-intl';
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-
-export default class LoadingScreen extends React.Component {
- constructor(props) {
- super(props);
- this.state = {};
- }
- render() {
- let message = (
- <FormattedMessage
- id='loading_screen.loading'
- defaultMessage='Loading'
- />
- );
-
- if (this.props.message) {
- message = this.props.message;
- }
-
- return (
- <div
- className='loading-screen'
- style={{position: this.props.position}}
- >
- <div className='loading__content'>
- <h3>
- {message}
- </h3>
- <div className='round round-1'/>
- <div className='round round-2'/>
- <div className='round round-3'/>
- </div>
- </div>
- );
- }
-}
-
-LoadingScreen.defaultProps = {
- position: 'relative'
-};
-LoadingScreen.propTypes = {
- position: PropTypes.oneOf(['absolute', 'fixed', 'relative', 'static', 'inherit']),
- message: PropTypes.node
-};