diff options
author | 2022-07-07 15:28:56 -0400 | |
---|---|---|
committer | 2022-07-07 14:14:57 -0700 | |
commit | 5b880512fb4bf90ac60536138e6d6c3730e247da (patch) | |
tree | 05f9f8f16a862581691de6be519227a5afaa9cfa /examples/next | |
parent | 3b43a192f174a7c03c3903646bc616da28f4a745 (diff) | |
download | bun-5b880512fb4bf90ac60536138e6d6c3730e247da.tar.gz bun-5b880512fb4bf90ac60536138e6d6c3730e247da.tar.zst bun-5b880512fb4bf90ac60536138e6d6c3730e247da.zip |
Removed unused parts of index.tsx
Diffstat (limited to 'examples/next')
-rw-r--r-- | examples/next/pages/index.tsx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/next/pages/index.tsx b/examples/next/pages/index.tsx index 90b988011..fc078404d 100644 --- a/examples/next/pages/index.tsx +++ b/examples/next/pages/index.tsx @@ -1,13 +1,7 @@ import Head from "next/head"; -import Link from "next/link"; import React from "react"; import styles from "../styles/Home.module.css"; import nextPackage from "next/package.json"; -export async function getStaticProps(ctx) { - return { - props: {}, - }; -} export default function Home({}) { return ( |