// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import {FormattedMessage} from 'mm-intl'; export default class NotLoggedIn extends React.Component { componentDidMount() { $('body').attr('class', 'white'); $('#root').attr('class', 'container-fluid'); } componentWillUnmount() { $('body').attr('class', ''); $('#root').attr('class', ''); } render() { return (
{this.props.children}
{global.window.mm_config.SiteName}
{'© 2015 Mattermost, Inc.'}
); } } NotLoggedIn.defaultProps = { }; NotLoggedIn.propTypes = { children: React.PropTypes.object };