Skip to content

Commit 42a986b

Browse files
authored
Update app page.
1 parent 0ada4f3 commit 42a986b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

mystbin/frontend/pages/_app.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
import "../styles/globals.css";
22
import "bootstrap/dist/css/bootstrap.min.css";
3+
import Script from "next/Script"
4+
35

46
function MyApp({ Component, pageProps }) {
5-
return <Component {...pageProps} />;
7+
return(<>
8+
<Script src={"https://media.ethicalads.io/media/client/ethicalads.min.js"} strategy={"beforeInteractive"}/>
9+
<Component {...pageProps} />;
10+
</>)
611
}
712

813
export default MyApp;

0 commit comments

Comments
 (0)