mirror of
https://github.com/tauri-apps/webdriver-example.git
synced 2026-01-31 00:55:20 +01:00
25 lines
676 B
HTML
25 lines
676 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
|
|
<title>Tauri + Solid + Typescript App</title>
|
|
<style>
|
|
body {
|
|
/* Add a nice colorscheme to our page and text */
|
|
background-color: #222831;
|
|
color: #ececec;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
|
|
<script src="/src/index.tsx" type="module"></script>
|
|
</body>
|
|
</html>
|