blob: 074552f77f86da042f762699071abf9e793675bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from "react";
import ReactDOM from "react-dom/client";
import { NextUIProvider, Spacer } from "@nextui-org/react";
import App from "./App";
import "./styles.css";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<NextUIProvider>
<main className="text-foreground bg-background">
<div data-tauri-drag-region className="w-full h-8 absolute" />
<App />
</main>
</NextUIProvider>
</React.StrictMode>,
);
|