accounts-frontend/src/components/auth/AppInfo.jsx

23 lines
634 B
React
Raw Normal View History

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