This repository has been archived on 2024-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-17 23:27:17 -05:00

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>
);
}
}