import React, { Component } from "react"; import style from "../index.less"; import { Radio} from '@commonComp'; class RadioItem extends Component { constructor(props) { super(props) } render() { const {title,data } = this.props; return

{title}

; } } export default RadioItem;