import React from 'react' import '../g.scss' function LabelLine(props: ILine) { if (props.show) { return
} else { return null } } export default LabelLine export interface ILine { show: boolean; }