1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-25 18:25:17 +00:00
_/pages/about.tsx

13 lines
217 B
TypeScript
Raw Normal View History

2019-04-21 19:17:15 +09:00
import React from "react";
2019-04-23 16:49:16 +09:00
import Link from "next/link";
2019-04-21 19:17:15 +09:00
const About: React.FC = () => (
<article>
<h1>About</h1>
2019-04-23 16:49:16 +09:00
<Link href="/">
<a>Back to Home</a>
</Link>
2019-04-21 19:17:15 +09:00
</article>
);
export default About;