ruff/playground/ty/src/main.tsx
2025-05-03 19:49:15 +02:00

10 lines
272 B
TypeScript

import React from "react";
import ReactDOM from "react-dom/client";
import "./index.css";
import Playground from "./Playground";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<Playground />
</React.StrictMode>,
);