Consolidated sender and receiver projects

This commit is contained in:
2021-08-26 20:05:40 +02:00
parent ca0e2dd64f
commit 8555e3f9e2
4 changed files with 109 additions and 5 deletions

18
receiver.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Canvas Receiver</title>
<script defer type="module" src="dist/canvasReceiver.js"></script>
</head>
<body>
<div id="canvas"></div>
</body>
<style>
#canvas {
width: 500px;
height: 500px;
border: 1px solid black;
}
</style>
</html>