tvl-depot/users/wpcarro/ynabsql/dataviz/index.html
William Carroll b3a91ce57b feat(wpcarro/ynabsql): Proof-of-concept demo
Hacked this together during my week-off while I was in Telluride, CO. The git
history is quite sloppy; so is some of the code. But it (mostly) works as a
demo, and that was the point.

Change-Id: Icfbc277090b69a802c00becdbd162652e4e8e156
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7904
Reviewed-by: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Autosubmit: wpcarro <wpcarro@gmail.com>
2023-01-23 15:59:40 +00:00

29 lines
892 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- TODO(wpcarro): Cache these locally -->
<link rel="stylesheet" href="./cdn/terminal.min.css" />
<style>
:root {
--page-width: 100em;
}
</style>
</head>
<body class="container">
<div id="mount"></div>
<!-- chart.js -->
<script src="./cdn/chart.js"></script>
<script src="./cdn/date_fns.js"></script>
<script src="./cdn/chartjs-adapter-date-fns.bundle.min.js"></script>
<!-- react.js -->
<script src="./cdn/react.development.js" crossorigin></script>
<script src="./cdn/react-dom.development.js" crossorigin></script>
<script src="./cdn/babel.min.js"></script>
<!-- depot JS -->
<script src="./cdn/slx.js"></script>
<script src="./data.js"></script>
<script src="./components.js" type="text/babel"></script>
</body>
</html>