dioxus/packages/desktop/src/index.html

23 lines
298 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2021-10-16 21:04:28 +00:00
<html>
2021-10-16 21:04:28 +00:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8" />
</head>
2021-10-16 21:04:28 +00:00
<body>
2021-11-19 05:49:04 +00:00
<div id="main">
</div>
</body>
2022-01-12 12:34:37 +00:00
<script>
import("./index.js").then(function (module) {
module.main();
});
</script>
2022-01-08 13:23:26 +00:00
</html>