mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-01-07 18:28:52 +00:00
22 lines
298 B
HTML
22 lines
298 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8" />
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="main">
|
|
</div>
|
|
</body>
|
|
|
|
<script>
|
|
import("./index.js").then(function (module) {
|
|
module.main();
|
|
});
|
|
</script>
|
|
|
|
</html>
|