Skip to content

Commit

Permalink
Add input/output test for 30091 (#31166)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
timneutkens and kodiakhq[bot] committed Nov 8, 2021
1 parent 9d7900c commit 9fe0fda
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
@@ -0,0 +1,14 @@
export default function Home({}) {
return (
<div>
<p>Hello World</p>
</div>
)
}

export async function getStaticProps() {
await import('_http_common').then((http) => console.log(http))
return {
props: {},
}
}
@@ -0,0 +1,4 @@
export var __N_SSG = true;
export default function Home({}) {
return __jsx("div", null, __jsx("p", null, "Hello World"));
};

0 comments on commit 9fe0fda

Please sign in to comment.