codehost now reflects my new theme "Toxic" for vscode. hope you like it.
import React from "react";
import ReactDOM from "react-dom/client";
import "2bit-ui";
import "./index.css";
import { App } from "./App";
const root = document.getElementById("root") as HTMLElement;
const app = (
<React.StrictMode>
<App />
</React.StrictMode>
);
ReactDOM.createRoot(root).render(app);
syntax highlighting by codehost
