blob: 2c6774190b482078adcb6de807ff8053821cc85c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import React from "react";
// import React, { useState } from "react";
// import "./Tile.css";
const Tile = (props) => {
// const [activeLink, updateActiveLink] = useState("home")
return (
<div className={"tile"} style={{
"height": props.height,
"width": props.width
}}></div>
)
}
export default Tile;
|