[READ-ONLY] Mirror of https://github.com/sxzz/tauri-fetch-abort.
540 B
19 lines
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <link rel="stylesheet" href="/src/styles.css" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title>Fetch Abort Demo</title>
8 <script type="module" src="/src/main.ts" defer></script>
9 </head>
10
11 <body>
12 <main class="container">
13 <h1>Thanks to Tauri!</h1>
14
15 <button id="native">Fetch & Abort (native browser API)</button>
16 <button id="tauri">Fetch & Abort (Tauri API)</button>
17 </main>
18 </body>
19</html>