electron-demo.js/index.html

28 lines
678 B
HTML
Raw Normal View History

2017-04-20 18:01:35 +00:00
<!DOCTYPE html>
<html>
<head>
2017-04-24 17:19:39 +00:00
<link href="./style.css" type="text/css" rel="stylesheet" media="screen">
2017-04-20 18:01:35 +00:00
<meta charset="UTF-8">
</head>
<body>
<script>require('./crash-reporter')</script>
2017-04-21 19:24:57 +00:00
<script>require('./notifications')</script>
<script>require('./drag-drop-render')</script>
2017-04-20 18:58:11 +00:00
2017-04-24 17:19:39 +00:00
<div class="notify">
<h3>Notifications</h3>
<button class="start-notify">Start</button>
<button class="stop-notify">Stop</button>
</div>
<div class="drag-n-drop">
<h3>Drag and Drop Area</h3>
<div class="file-container"></div>
2017-04-21 19:24:57 +00:00
</div>
<div>
<button class="crasher">Crash Program</button>
</div>
2017-04-20 18:01:35 +00:00
</body>
</html>