import { useState } from "react"; import { invoke } from "@tauri-apps/api/core"; import { Loader2Icon } from "lucide-react"; import "./App.css"; function App() { const [loading, setLoading] = useState(false); return (
qsv logo

qsv Easy installer for Windows

Click the button to install the latest release of qsv and then qsv should be accessible from a new terminal.

{loading && (

Downloading and installing to PATH. This may take a few seconds...

)}
); } export default App;