aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-next/pages/errortest.tsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-09-09 23:33:34 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-09-09 23:33:34 -0700
commitfc907e2f81698d89502fb2ee0375e6d98a492c13 (patch)
treee775c2479b334ec901f61b5c0ccfab0102ff679e /examples/hello-next/pages/errortest.tsx
parent8a02ad48a5eb1319c1bf3e9eb97e013924db875f (diff)
downloadbun-jarred/fetch-experiment.tar.gz
bun-jarred/fetch-experiment.tar.zst
bun-jarred/fetch-experiment.zip
Diffstat (limited to 'examples/hello-next/pages/errortest.tsx')
-rw-r--r--examples/hello-next/pages/errortest.tsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/hello-next/pages/errortest.tsx b/examples/hello-next/pages/errortest.tsx
deleted file mode 100644
index 49a293df7..000000000
--- a/examples/hello-next/pages/errortest.tsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import IndexPage from "pages/index";
-
-export default function ErrorTestPage() {
- class Wow {}
-
- const ladee = "",
- foo = { bar: { boom: new Wow() } };
-
- if (typeof window === "undefined") {
- const Doge = import("wow/such-esm/very-import");
- }
-
- return <IndexPage />;
-}