aboutsummaryrefslogtreecommitdiff
path: root/src/components/Tile/Tile.js
blob: 6fa7f2c3fe8db0dc8b98298eabc298f8dfa3292e (plain)
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