import React, { Component, PropTypes } from 'react'; import { connect } from 'react-redux'; import AppInfo from 'components/auth/appInfo/AppInfo'; import PanelTransition from 'components/auth/PanelTransition'; import styles from './auth.scss'; class AuthPage extends Component { static displayName = 'AuthPage'; static propTypes = { client: PropTypes.shape({ id: PropTypes.string.isRequired, name: PropTypes.string.isRequired, description: PropTypes.string.isRequired }) }; state = { isSidebarHidden: false }; render() { const {isSidebarHidden} = this.state; const {client} = this.props; return (