diff --git a/src/components/NavBar.js b/src/components/NavBar.js
index 249c7c8..03ef51c 100644
--- a/src/components/NavBar.js
+++ b/src/components/NavBar.js
@@ -50,6 +50,9 @@ export default class NavBar extends Component {
πΊοΈ Map
+
+ π Statists
+
βοΈ Settings
diff --git a/src/components/StatistsComponent.js b/src/components/StatistsComponent.js
new file mode 100644
index 0000000..edfd876
--- /dev/null
+++ b/src/components/StatistsComponent.js
@@ -0,0 +1,38 @@
+import React, { Component } from "react";
+import BeldenLogo from "../assets/images/belden-white.png";
+import "../assets/stylesheets/summary.scss";
+
+export default class StatistsComponent extends Component {
+ render() {
+ return (
+
+
+

+
+
+
Summary
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/index.js b/src/index.js
index 8cab241..99698a2 100644
--- a/src/index.js
+++ b/src/index.js
@@ -5,6 +5,7 @@ import SummaryRoute from "./routes/SummaryRoute";
import BrowseRoute from "./routes/BrowseRoute";
import SettingsRoute from "./routes/SettingsRoute";
import MapRoute from "./routes/MapRoute";
+import StatistsRoute from "./routes/StatistsRoute";
import CableDetailRoute from "./routes/CableDetailRoute";
// Root
@@ -43,6 +44,11 @@ const init = () => {
element: ,
// errorElement: ,
},
+ {
+ path: "/statists",
+ element: ,
+ // errorElement: ,
+ },
{
path: "/browse/cable/:cablePos",
element: ,
@@ -55,4 +61,6 @@ const init = () => {
);
-};
\ No newline at end of file
+};
+
+init();
\ No newline at end of file
diff --git a/src/routes/StatistsRoute.js b/src/routes/StatistsRoute.js
new file mode 100644
index 0000000..a0515f3
--- /dev/null
+++ b/src/routes/StatistsRoute.js
@@ -0,0 +1,20 @@
+import React, { Component } from "react";
+import NavBar from "../components/NavBar";
+import StatistsComponent from "../components/StatistsComponent";
+import "../assets/stylesheets/app.scss";
+
+export default class StatistsRoute extends Component {
+ constructor(props) {
+ super(props);
+ document.title = "Summary";
+ }
+
+ render() {
+ return (
+
+
+
+
+ );
+ }
+}