/* eslint-disable react/no-danger */ import React from "react"; import PropTypes from "prop-types"; import Section from "./Section"; import { Checkbox } from "../Generic"; const CheckboxSection = ({ title, text, question, variable, setVariable, disabled, }) => { return (
{text &&

}

); }; CheckboxSection.propTypes = { title: PropTypes.string.isRequired, text: PropTypes.string, question: PropTypes.string.isRequired, variable: PropTypes.bool.isRequired, setVariable: PropTypes.func.isRequired, disabled: PropTypes.bool, }; CheckboxSection.defaultProps = { disabled: false, }; export default CheckboxSection;