Interactive playground with themed banner, headless components, and debug tabs demonstrating programmatic consent access via getConsent() across separate bundles. Signed-off-by: Émile Ré <emile@probo.com>
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { App } from "./App";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<App />
|
|
);
|