2016-01-04 02:48:42 +05:30
import React , { Component } from 'react' ;
2016-01-18 10:58:43 +05:30
import { connect } from 'react-redux' ;
2016-01-04 02:48:42 +05:30
import AppInfo from 'components/auth/AppInfo' ;
2016-01-31 18:29:38 +05:30
import PanelTransition from 'components/auth/PanelTransition' ;
2016-01-04 02:48:42 +05:30
import styles from './auth.scss' ;
2016-01-18 10:58:43 +05:30
class AuthPage extends Component {
2016-01-16 17:36:22 +05:30
displayName = 'AuthPage' ;
2016-01-04 02:48:42 +05:30
render ( ) {
var appInfo = {
name : 'TLauncher' ,
2016-01-04 11:32:13 +05:30
description : ` Лучший альтернативный лаунчер для Minecraft с большим количеством версий и их модификаций, а также возмоностью входа как с лицензионным аккаунтом, так и без него. `
2016-01-04 02:48:42 +05:30
} ;
return (
< div >
< div className = { styles . sidebar } >
< AppInfo { ...appInfo } / >
< / div >
< div className = { styles . content } >
2016-01-31 18:29:38 +05:30
< PanelTransition { ...this.props } / >
2016-01-04 02:48:42 +05:30
< / div >
< / div >
) ;
}
2016-01-21 11:59:35 +05:30
}
2016-01-18 10:58:43 +05:30
export default connect ( ( state ) => ( {
path : state . routing . location . pathname
} ) ) ( AuthPage ) ;