Add a modern example that doesn't need Webpack patching

This commit is contained in:
2020-07-24 13:58:28 -04:00
parent 37f7d84695
commit b3b81c2ee5
11 changed files with 5666 additions and 0 deletions

16
seed/static/index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>💖 Hello World!</h1>
<p>Welcome to your Electron application.</p>
<div id="app"></div>
</body>
<script src="./bundle.js"></script>
</html>