mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import "./index.css";
|
|
import Chrome from "./Editor/Chrome";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<Chrome />
|
|
</React.StrictMode>,
|
|
);
|