diff --git a/PollingDataVisualization b/PollingDataVisualization new file mode 160000 index 0000000..27903a1 --- /dev/null +++ b/PollingDataVisualization @@ -0,0 +1 @@ +Subproject commit 27903a1b542518e670b9ec409b5be9988e76fc72 diff --git a/src/components/HomePage/HomePage.jsx b/src/components/HomePage/HomePage.jsx new file mode 100644 index 0000000..c1d98e6 --- /dev/null +++ b/src/components/HomePage/HomePage.jsx @@ -0,0 +1,25 @@ +import React from "react"; +import { Switch, Route, Redirect } from "react-router-dom"; +import './App.css'; +import NavBarContainer from "../NavBar/NavBarContainer"; +import Footer from "../Footer/Footer"; +import LoginContainer from "../Login/LoginContainer"; +import Barchart from "../Barchart/Barchart"; + +function HomePage() { + return ( +
+ + + + + + + +
+ ); + + + } +export default HomePage; \ No newline at end of file