bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/kicked-screen/component.jsx
2016-07-28 19:49:16 +00:00

19 lines
423 B
JavaScript

import React, { Component } from 'react';
import styles from './styles.scss';
import Icon from '../icon/component';
class KickedScreen extends Component {
render() {
return (
<div className={styles.background}>
<Icon iconName="sad" className={styles.icon}/>
<div className={styles.message}>
{this.props.children}
</div>
</div>
);
}
}
export default KickedScreen;