1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import React from "react"; // import React, { useState } from "react"; import "./Tile.css"; const Tile = (props) => { // const [,] = useState() const style = { height: props.height; width: props.width; backgroundColor: props.colorBG // textColor: props.colorFG } return ( <div className={"tile"} style={style}></div> ) } export default Tile