mirror of
https://github.com/zoriya/flood.git
synced 2025-12-19 21:55:15 +00:00
18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
import React from 'react';
|
|
|
|
class ApplicationContent extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className="application__content">
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ApplicationContent.propTypes = {
|
|
children: React.PropTypes.node
|
|
};
|
|
|
|
export default ApplicationContent;
|