12 lines
254 B
TypeScript
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>,
|
|
);
|