Adding Statists Page!

This commit is contained in:
Lucas
2024-05-10 11:18:41 -05:00
parent e784bbfa64
commit 9de494d6ae
4 changed files with 70 additions and 1 deletions

View File

@ -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 (
<div className="container">
<NavBar />
<StatistsComponent socketHandler={this.props.socket} />
</div>
);
}
}