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