-- full integration with mol-edit backend -- added readme -- added vqe local_computational
25 lines
713 B
HTML
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>
|