8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
|
|
import React from "react";
|
||
|
|
import { createRoot } from "react-dom/client";
|
||
|
|
import "./play.css";
|
||
|
|
import PlayApp from "./play/app";
|
||
|
|
|
||
|
|
const root = createRoot(document.getElementById("root")!);
|
||
|
|
root.render(<PlayApp />);
|