import React from "react"; import "./index.less"; export default class TipLabel extends React.Component { render() { return (
{this.props.title ? this.props.title : "小提示"}
{this.props.tipList && this.props.tipList.map(item =>
{item}
)} {this.props.children}
); } }