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

12 lines
217 B
TypeScript

import React from "react";
import Link from "next/link";
const About: React.FC = () => (
<article>
<h1>About</h1>
<Link href="/">
<a>Back to Home</a>
</Link>
</article>
);
export default About;