graphicek/client/index.html

15 lines
422 B
HTML
Raw Normal View History

2022-08-13 23:33:50 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-09-01 08:12:28 +02:00
<title>Graphicek</title>
2022-08-21 22:27:31 +02:00
<!-- TODO: This should be loaded locally -->
<script src="https://cdn.plot.ly/plotly-2.14.0.min.js"></script>
2022-08-13 23:33:50 +02:00
</head>
<body>
2022-08-21 22:27:31 +02:00
<div id="application"></div>
<script type="module" src="/src/index.tsx"></script>
2022-08-13 23:33:50 +02:00
</body>
</html>