1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-07 09:38:46 +00:00
_/pages/index.tsx

13 lines
222 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 Home: React.FC = () => (
<article>
<h1>Hello Next.js</h1>
2019-04-23 16:49:16 +09:00
<Link href="/about">
<a>/about</a>
</Link>
2019-04-21 19:17:15 +09:00
</article>
);
export default Home;