import React from 'react'; import './index.less'; import CheckboxItem from '../CheckboxItem'; function AnswerCheckbox(props) { const { selected, answer, show, list = [] } = props; return (
{list.map((item, index) => { return (
{item.text}
); })}
); } AnswerCheckbox.propTypes = {}; export default AnswerCheckbox;