blob: 96d570a3326f43893f80719259659dd5006e9072 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 min-h-8 z-10 border-b-1"
/>
<div className="z-20 ">
<App />
</div>
</main>
</NextUIProvider>
</React.StrictMode>,
);
|