7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
import { mountLocalDataBoundary } from "../../../apps/web/src/local-data-boundary.js";
|
|
|
|
const root = document.querySelector("#root");
|
|
if (!root) throw new Error("Fixture root is missing.");
|
|
|
|
mountLocalDataBoundary(root);
|