30 lines
556 B
HTML
30 lines
556 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<!--
|
|
We start with a basic html 'page' that is the size of the jweb object,
|
|
but has no scrollbars nor floating content.
|
|
-->
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="./lfogui.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="lfo-container"></div>
|
|
|
|
<script src="./react.js"></script>
|
|
<script src="./react-dom.js"></script>
|
|
<script src="./moment.js"></script>
|
|
<script src="./common.js"></script>
|
|
<script src="./enums.js"></script>
|
|
<script src="./modulators.js"></script>
|
|
<script src="./lfogui.js">
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|