|
@@ -17,6 +17,11 @@ import {
|
|
|
Transactions,
|
|
|
Burners,
|
|
|
} from "..";
|
|
|
+
|
|
|
+import
|
|
|
+ ValidatorReport
|
|
|
+from "../Validators/ValidatorReport"
|
|
|
+
|
|
|
import { IState } from "../../types";
|
|
|
|
|
|
interface IProps extends IState {
|
|
@@ -80,6 +85,10 @@ const Routes = (props: IProps) => {
|
|
|
path="/validators"
|
|
|
render={(routeprops) => <Validators {...routeprops} {...props} />}
|
|
|
/>
|
|
|
+ <Route
|
|
|
+ path="/validators_report"
|
|
|
+ render={(routeprops) => <ValidatorReport {...routeprops} {...props} />}
|
|
|
+ />
|
|
|
<Route
|
|
|
path="/storage"
|
|
|
render={(routeprops) => <Storage {...routeprops} {...props} />}
|