22 lines
443 B
TypeScript
22 lines
443 B
TypeScript
import React from 'react'
|
|
import Head from 'next/head'
|
|
import Link from 'next/link'
|
|
|
|
export default function NextPage() {
|
|
return (
|
|
<React.Fragment>
|
|
<Head>
|
|
<title>Next - Nextron (basic-lang-typescript)</title>
|
|
</Head>
|
|
<div>
|
|
<p>
|
|
⚡ Electron + Next.js ⚡ -
|
|
<Link href="/home">
|
|
<a>Go to home page</a>
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</React.Fragment>
|
|
)
|
|
}
|