2023-03-03 07:03:08 -05:00
|
|
|
import { useState } from "react";
|
|
|
|
|
import reactLogo from "./assets/react.svg";
|
|
|
|
|
import { invoke } from "@tauri-apps/api/tauri";
|
2023-03-03 08:29:36 -05:00
|
|
|
import { Routes, Route, Outlet, Link } from "react-router-dom";
|
2023-03-03 07:03:08 -05:00
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="container">
|
|
|
|
|
<h1>Welcome to Tauri!</h1>
|
|
|
|
|
|
|
|
|
|
<div className="row">
|
|
|
|
|
<a href="https://vitejs.dev" target="_blank">
|
|
|
|
|
<img src="/vite.svg" className="logo vite" alt="Vite logo" />
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://tauri.app" target="_blank">
|
|
|
|
|
<img src="/tauri.svg" className="logo tauri" alt="Tauri logo" />
|
|
|
|
|
</a>
|
|
|
|
|
<a href="https://reactjs.org" target="_blank">
|
|
|
|
|
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="row">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App;
|