// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import {FormattedMessage} from 'react-intl'; import {Link} from 'react-router/es6'; export default class BackstageNavbar extends React.Component { static get propTypes() { return { team: React.PropTypes.object.isRequired }; } render() { if (!this.props.team) { return null; } return (
); } }