1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-16 00:06:11 +00:00
seahub/frontend/src/components/main-panel.js

22 lines
359 B
JavaScript
Raw Normal View History

2018-08-30 07:10:52 +00:00
import React, { Component } from 'react';
2018-10-16 10:19:51 +00:00
import PropTypes from 'prop-types';
2018-08-30 07:10:52 +00:00
2018-10-16 10:19:51 +00:00
const propTypes = {
children: PropTypes.object.isRequired,
};
2018-08-30 07:10:52 +00:00
class MainPanel extends Component {
render() {
return (
<div className="main-panel">
2018-11-26 06:00:32 +00:00
{this.props.children}
</div>
);
2018-08-30 07:10:52 +00:00
}
}
2018-10-16 10:19:51 +00:00
MainPanel.propTypes = propTypes;
2018-08-30 07:10:52 +00:00
export default MainPanel;