2016-01-04 02:48:42 +05:30
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2016-01-04 11:32:13 +05:30
|
|
|
import styles from './appInfo.scss';
|
|
|
|
|
2016-01-04 02:48:42 +05:30
|
|
|
export default class SignIn extends Component {
|
|
|
|
render() {
|
2016-01-04 11:32:13 +05:30
|
|
|
var { name, description } = this.props;
|
2016-01-04 02:48:42 +05:30
|
|
|
|
|
|
|
return (
|
2016-01-04 11:32:13 +05:30
|
|
|
<div className={styles.appInfo}>
|
|
|
|
<div className={styles.logoContainer}>
|
|
|
|
<h2 className={styles.logo}>{name}</h2>
|
2016-01-04 02:48:42 +05:30
|
|
|
</div>
|
2016-01-04 11:32:13 +05:30
|
|
|
<div className={styles.descriptionContainer}>
|
|
|
|
<p className={styles.description}>
|
|
|
|
{description}
|
2016-01-04 02:48:42 +05:30
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|