diff options
Diffstat (limited to 'examples/hello-next/pages/index.tsx')
-rw-r--r-- | examples/hello-next/pages/index.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/hello-next/pages/index.tsx b/examples/hello-next/pages/index.tsx index b87c67a84..dab661672 100644 --- a/examples/hello-next/pages/index.tsx +++ b/examples/hello-next/pages/index.tsx @@ -3,11 +3,12 @@ import Image from "next/image"; import styles from "../styles/Home.module.css"; import Link from "next/link"; import { useRouter } from "next/router"; - import Title from "../components/Title"; +import React from "react"; export default function Home() { const router = useRouter(); + return ( <div className={styles.container}> <Head> @@ -20,7 +21,7 @@ export default function Home() { <main className={styles.main}> <h1 className={styles.title}> - Welcome to <a href="https://nextjs.org">Next.js!</a> + asdasdasd to <a href="https://nextjs.org">Next.js!</a> </h1> <p className={styles.description}> |