-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFooter.tsx
34 lines (32 loc) · 848 Bytes
/
Footer.tsx
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
33
34
import React from "react";
import "./Footer.css";
import { Link } from "react-router-dom";
import classNames from "classnames";
const Footer: React.FC<{ className?: string }> = ({ className }) => {
return (
<footer className={classNames("Footer", className)}>
<ul>
<li>
<Link to="word_list">Full word list</Link>
</li>
<li>
<a
href="https://www.youtube.com/playlist?list=PLgsIo5h4KQoYzMCvcuBFTy7-qW8VgsFpT"
className="external"
>
Full video list
</a>
</li>
<li>
<a
href="https://dgmstuart.github.io/blog/2022/02/18/building-a-bingo-app-in-react/"
className="external"
>
About
</a>
</li>
</ul>
</footer>
);
};
export default Footer;