Bootstrap tauri app in client
This commit is contained in:
10
client/src/App.jsx
Normal file
10
client/src/App.jsx
Normal 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
9
client/src/main.jsx
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")).render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
);
|
Reference in New Issue
Block a user