Initial commit

This commit is contained in:
2023-03-27 16:47:19 +02:00
commit bbb6dfbef6
8 changed files with 1665 additions and 0 deletions

25
index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<title>Hello from Electron renderer!</title>
</head>
<body>
<h1>Hello from Electron renderer!</h1>
<p>👋</p>
<h2>Data:</h2>
<pre id="data">To be replaced...</pre>
</body>
</html>
<script src="./renderer.js"></script>