template for mods

This commit is contained in:
trian-gles
2024-08-01 17:11:37 +02:00
parent 15beba29f2
commit ece14b9599
6 changed files with 2682 additions and 1108 deletions

28
lfogui.html Normal file
View File

@@ -0,0 +1,28 @@
<!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="./src/lfogui.css">
</head>
<body>
<div id="lfo-container"></div>
<script src="./src/moment.js"></script>
<script src="./src/react.js"></script>
<script src="./src/react-dom.js"></script>
<script src="./src/common.js"></script>
<script src="./src/enums.js"></script>
<script src="./src/modulators.js"></script>
<script src="./src/lfogui.js">
</script>
</body>
</html>