Files
redash/client/app/components/visualizations/editor/Section.jsx
Arik Fraimovich 56d3be2248 Prettier all the Javascript code & GitHub Action (#4433)
* Prettier all the JS files

* Add GitHub Action to autoformat code pushed to master

* Fix eslint violation due to formatting.

* Remove GitHub actions for styling

* Add restyled.io config
2019-12-11 17:05:38 +02:00

46 lines
819 B
JavaScript

import React from "react";
import PropTypes from "prop-types";
import cx from "classnames";
function SectionTitle({ className, children, ...props }) {
if (!children) {
return null;
}
return (
<h4 className={cx("m-t-0", "m-b-15", className)} {...props}>
{children}
</h4>
);
}
SectionTitle.propTypes = {
className: PropTypes.string,
children: PropTypes.node,
};
SectionTitle.defaultProps = {
className: null,
children: null,
};
export default function Section({ className, children, ...props }) {
return (
<div className={cx("m-b-15", className)} {...props}>
{children}
</div>
);
}
Section.propTypes = {
className: PropTypes.string,
children: PropTypes.node,
};
Section.defaultProps = {
className: null,
children: null,
};
Section.Title = SectionTitle;