[ui] change framework from Tauri Leptos to Tauri Vanilla (Typescript) and React
This commit is contained in:
9
crates/lanspread-tauri-deno-ts/src/main.tsx
Normal file
9
crates/lanspread-tauri-deno-ts/src/main.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App";
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
);
|
Reference in New Issue
Block a user