Added booked route
This commit is contained in:
parent
2d4442fe76
commit
cb57fa23c0
@ -1,5 +1,5 @@
|
||||
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
|
||||
@ -9,10 +9,11 @@ export default class Reports extends Component {
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<Link to="/missed">Missed migrations</Link><p />
|
||||
<Link to="/pending-terminations">Upcoming Terminations</Link><p />
|
||||
<Link to="/all-terminations">All waiting terminations</Link><p />
|
||||
<Link to="/completed">Completed Migrations</Link><p />
|
||||
<a href="/missed">Missed migrations</a><p />
|
||||
<a href="/pending-terminations">Upcoming Terminations</a><p />
|
||||
<a href="/all-terminations">All waiting terminations</a><p />
|
||||
<a href="/completed">Completed Migrations</a><p />
|
||||
<a href ="/booked">All booked migrations</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user