aboutsummaryrefslogtreecommitdiff
path: root/src/components/Views/Home/Home.js
blob: 51c4c4fccbf2bbbce58eefd28f4ba5090a172ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from "react";
// import React, { useState } from "react";
import "./Home.css";

const HomeView = (procs) => {
	const tileHeight = procs.height;
	const tileWidth = procs.width;
	// const [activeLink, updateActiveLink] = useState("home")
	return (
		<div className={"view"}>
			<div className={"tile"}></div>
		</div>
	)
}

export default HomeView