diff --git a/packages/playground-react/pages/_app.tsx b/packages/playground-react/pages/_app.tsx index ed848be..1fd7642 100644 --- a/packages/playground-react/pages/_app.tsx +++ b/packages/playground-react/pages/_app.tsx @@ -138,27 +138,6 @@ function KeyCaster() { function MyApp({ Component, pageProps }) { return ( <> - - - - - - - - - - -
diff --git a/packages/playground-react/pages/_document.tsx b/packages/playground-react/pages/_document.tsx new file mode 100644 index 0000000..8615a9b --- /dev/null +++ b/packages/playground-react/pages/_document.tsx @@ -0,0 +1,32 @@ +import { Html, Head, Main, NextScript } from 'next/document' + +export default function Document() { + return ( + + + + + + + + + + + + +
+ + + + ) +}