Bootstrap tauri app in client

This commit is contained in:
Mathias Wagner
2025-09-09 14:25:09 +02:00
parent 3bb2dcabaf
commit 87efa1cf0e
31 changed files with 6612 additions and 0 deletions

10
client/src/App.jsx Normal file
View File

@@ -0,0 +1,10 @@
const App = () => {
return (
<main className="container">
<h1>Arkendro client</h1>
</main>
);
}
export default App;

9
client/src/main.jsx Normal file
View File

@@ -0,0 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);