diff --git a/examples/with-tailwindcss/pages/index.tsx b/examples/with-tailwindcss/pages/index.tsx index 6efe2057f183..94e17a5facfb 100644 --- a/examples/with-tailwindcss/pages/index.tsx +++ b/examples/with-tailwindcss/pages/index.tsx @@ -1,6 +1,8 @@ +import type { NextPage } from 'next' import Head from 'next/head' +import Image from 'next/image' -export default function Home() { +const Home: NextPage = () => { return (
@@ -68,15 +70,17 @@ export default function Home() {
) } + +export default Home