fixed statistics
This commit is contained in:
@ -1,19 +1,19 @@
|
||||
import React, { Component } from "react";
|
||||
import NavBar from "../components/NavBar";
|
||||
import StatistsComponent from "../components/StatistsComponent";
|
||||
import StatisticsComponent from "../components/StatisticsComponent";
|
||||
import "../assets/stylesheets/app.scss";
|
||||
|
||||
export default class StatistsRoute extends Component {
|
||||
export default class StatisticsRoute extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
document.title = "Summary";
|
||||
document.title = "Statistics";
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="container">
|
||||
<NavBar />
|
||||
<StatistsComponent socketHandler={this.props.socket} />
|
||||
<StatisticsComponent socketHandler={this.props.socket} />
|
||||
</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user