21 lines
608 B
JavaScript
21 lines
608 B
JavaScript
import React, { Component } from "react";
|
|
import { Link as a } from "react-router-dom";
|
|
|
|
|
|
// This page was should hold a way to generate reports/lists of
|
|
// Migrations in varied statuses.
|
|
|
|
export default class Reports extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<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>
|
|
);
|
|
}
|
|
}
|