import React, { Component } from 'react'; export default class Demo extends Component { static displayName = 'TreemapItemDemo'; static defaultProps = {}; render() { const { depth, x, y, width, height, index, name, bgColors } = this.props; return ( { depth === 1 ? ( {name} ) : null } { depth === 1 ? {index + 1} : null } ); } }