Skip to content
index.tsx 338 B
Newer Older
Grant's avatar
Grant committed
import React from "react";
import { createRoot } from "react-dom/client";
Grant's avatar
Grant committed
import { NextUIProvider } from "@nextui-org/react";
Grant's avatar
Grant committed
import App from "./components/App";

const root = createRoot(document.getElementById("root")!);
Grant's avatar
Grant committed
root.render(
  <React.StrictMode>
    <NextUIProvider>
      <App />
    </NextUIProvider>
  </React.StrictMode>
);