
/*
    公共组件-组件名称
*/
import React, { Component } from 'react'
import ReactDOM from 'react-dom'

export default class TdCmpName extends Component{
    render(){
        if(this.props.visible){
            return <div className="td-cmp-name">{this.props.title}</div>
        }else{
            return null
        }
    }
}