Created
June 12, 2020 04:22
-
-
Save kennethnwc/5f6e3ea7f94f3344e38c1fdc6165567b to your computer and use it in GitHub Desktop.
with d.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Link from "next/link"; | |
import Layout from "../components/Layout"; | |
import { btn, btnPrimary } from "./_app.module.scss"; | |
const IndexPage = () => ( | |
<Layout title="Home | Next.js + TypeScript Example"> | |
<h1>Hello Next.js 👋</h1> | |
<p> | |
<Link href="/about"> | |
<a>About</a> | |
</Link> | |
<button className={`${btn} ${btnPrimary}`}>Test</button> | |
</p> | |
</Layout> | |
); | |
export default IndexPage; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment