Added booked route
This commit is contained in:
parent
2d4442fe76
commit
cb57fa23c0
@ -1,5 +1,5 @@
|
|||||||
import React, { Component } from "react";
|
import React, { Component } from "react";
|
||||||
import { Link } from "react-router-dom";
|
import { Link as a } from "react-router-dom";
|
||||||
|
|
||||||
|
|
||||||
// This page was should hold a way to generate reports/lists of
|
// This page was should hold a way to generate reports/lists of
|
||||||
@ -9,10 +9,11 @@ export default class Reports extends Component {
|
|||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Link to="/missed">Missed migrations</Link><p />
|
<a href="/missed">Missed migrations</a><p />
|
||||||
<Link to="/pending-terminations">Upcoming Terminations</Link><p />
|
<a href="/pending-terminations">Upcoming Terminations</a><p />
|
||||||
<Link to="/all-terminations">All waiting terminations</Link><p />
|
<a href="/all-terminations">All waiting terminations</a><p />
|
||||||
<Link to="/completed">Completed Migrations</Link><p />
|
<a href="/completed">Completed Migrations</a><p />
|
||||||
|
<a href ="/booked">All booked migrations</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user