aboutsummaryrefslogtreecommitdiff
path: root/src/components/Views/Home.js
blob: ab8b66f8f983b35815ea02f622e79c980d464f8c (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/Tile";
import "./Home.css";

const HomeView = () => {
	// const [activeLink, updateActiveLink] = useState("home")
	return (
		<div className={"view"}>
			<Tile height="1rem" width="1rem"></Tile>
		</div>
	)
}

export default HomeView