Files
moreminimore-redesign/packages/blocks/playground/src/main.tsx
2026-04-01 10:44:22 +01:00

12 lines
254 B
TypeScript

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./styles.css";
import { Playground } from "./Playground";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<Playground />
</StrictMode>,
);