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