blob: ff72a9105bbf45ad61319035d20397257a3888ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import { Link } from "react-router-dom";
import "./App.css";
import Index from "./pages/Index";
const App = () => {
return (
<div className="App">
<header>
<Link to="/">
<h1>RIT COVID Dashboard</h1>
</Link>
</header>
<Index />
<footer>
<p>
By Galen Guyer. Source available on{" "}
<a className="BlueLink" href="https://github.com/galenguyer/rit-covid-dashboard">
GitHub
</a>{" "}
(
<a className="BlueLink" href="https://github.com/galenguyer/rit-covid-dashboard/issues">
Report Issue
</a>
)
</p>
</footer>
<script data-goatcounter="https://rcd.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
</div>
);
};
export default App;
|