1import React, { type PropsWithChildren } from "react";
2
3export default function Root({ children }: PropsWithChildren) {
4 return (
5 <>
6 {children}
7 <img
8 referrerPolicy="no-referrer-when-downgrade"
9 src="https://static.scarf.sh/a.png?x-pxid=d13c8a61-d145-479a-92dc-6a231eddbb3e"
10 style={{
11 position: "absolute",
12 }}
13 />
14 </>
15 );
16}
17
1import React, { type PropsWithChildren } from "react";
2
3export default function Root({ children }: PropsWithChildren) {
4 return (
5 <>
6 {children}
7 <img
8 referrerPolicy="no-referrer-when-downgrade"
9 src="https://static.scarf.sh/a.png?x-pxid=d13c8a61-d145-479a-92dc-6a231eddbb3e"
10 style={{
11 position: "absolute",
12 }}
13 />
14 </>
15 );
16}
17