import React, { Component } from 'react' import { List } from 'antd-mobile'; const Item = List.Item; export default class Lists extends Component { render() { return ( { this.props.icon ? {this.props.callback()}} >{this.props.text} : {this.props.callback()}} >{this.props.text} } ) } }