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