bulma-dashboard-theme-worona
Version:
Theme for the Worona Dashboard.
16 lines (13 loc) • 370 B
JSX
import React from 'react';
const Container = ({ children, inverted }) => (
<section className="section" style={inverted ? { backgroundColor: 'black' } : {}}>
<div className="container">
{children}
</div>
</section>
);
Container.propTypes = {
children: React.PropTypes.node.isRequired,
inverted: React.PropTypes.bool,
};
export default Container;