components/TeacherPanel/TeacherPanel.jsx

/**
 * Панель параметров группы в кабинете учителя
 * @module TeacherPanel
 * @author Ihor Bielchenko
 * @requires react
 * @requires react#Component
 * @requires components/TeacherPanel/TeacherPanelNotices/TeacherPanelNotices.jsx
 * @requires components/TeacherPanel/TeacherPanelLessons/TeacherPanelLessons.jsx
 */

import React, { Component } from 'react';
import TeacherPanelNotices from './TeacherPanelNotices/TeacherPanelNotices.jsx';
import TeacherPanelLessons from './TeacherPanelLessons/TeacherPanelLessons.jsx';

/**
 * Панель параметров группы в кабинете учителя
 * @extends Component
 */
class TeacherPanel extends Component {

	/**
	 * Render component
	 * @return {Object} jsx object
	 */
	render() {
		return <div className="panel1">
				<div className="wrap">
					<div className="content">
						<TeacherPanelNotices />
						<TeacherPanelLessons />
					</div>
				</div>
			</div>
	}
}

export default TeacherPanel;