mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import "./index.css";
|
|
import App from "./App";
|
|
|
|
const root = ReactDOM.createRoot(
|
|
document.getElementById("root") as HTMLElement
|
|
);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|