We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ada4f3 commit 42a986bCopy full SHA for 42a986b
mystbin/frontend/pages/_app.tsx
@@ -1,8 +1,13 @@
1
import "../styles/globals.css";
2
import "bootstrap/dist/css/bootstrap.min.css";
3
+import Script from "next/Script"
4
+
5
6
function MyApp({ Component, pageProps }) {
- return <Component {...pageProps} />;
7
+ return(<>
8
+ <Script src={"https://media.ethicalads.io/media/client/ethicalads.min.js"} strategy={"beforeInteractive"}/>
9
+ <Component {...pageProps} />;
10
+ </>)
11
}
12
13
export default MyApp;
0 commit comments