import { Component } from 'react'; export default class GridCell extends Component { render() { const classname = ['cell', 'x' + this.props.x, 'y' + this.props.y]; const value = (this.props.show ? this.props.value : ''); return (
{value}
); } };