import React from 'react'; import './index.less'; import Button from '../Button'; function RadioButton(props) { const { list, checked, onChange } = props; return (
{list.map(item => { return ( ); })}
); } RadioButton.propTypes = {}; export default RadioButton;