// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import {FormattedMessage} from 'react-intl'; import React from 'react'; export default class LoadingScreen extends React.Component { constructor(props) { super(props); this.state = {}; } render() { return (

); } } LoadingScreen.defaultProps = { position: 'relative' }; LoadingScreen.propTypes = { position: React.PropTypes.oneOf(['absolute', 'fixed', 'relative', 'static', 'inherit']) };