Files
vqe_module/frontend-plugin/index.html
DeOwl c5ece3ff37 v1.0
-- full integration with mol-edit backend
-- added readme
-- added vqe local_computational
2026-05-25 19:17:04 +03:00

25 lines
713 B
HTML

<!-- index.html -->
<!doctype html>
<html style="height: 100%">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
sans-serif;
}
</style>
</head>
<body style="background-color: transparent !important; height: 100%">
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>