tauri-example/index.html

16 lines
422 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tauri Example App</title>
</head>
<body>
<div id="app">
<h1>Hello Tauri!</h1>
<p>This is a simple Tauri example app.</p>
<button id="counter">Count: 0</button>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>