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