aboutsummaryrefslogtreecommitdiff
path: root/src/components/Views/Home/Home.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-29 21:32:28 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-29 21:32:28 +0530
commit4c92b12bcb886507d5db738a27bd08e7654f8bfa (patch)
tree9c336d38fe00965b90a9ff205c632e6c1b6aac75 /src/components/Views/Home/Home.js
parentaef52169e3f0f9bde0e5f2dd21cbb316eaa34136 (diff)
Changed directory structer a but (?)
Diffstat (limited to 'src/components/Views/Home/Home.js')
-rw-r--r--src/components/Views/Home/Home.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/components/Views/Home/Home.js b/src/components/Views/Home/Home.js
deleted file mode 100644
index 51c4c4f..0000000
--- a/src/components/Views/Home/Home.js
+++ /dev/null
@@ -1,16 +0,0 @@
-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