forked from sergeysova/electron-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (17 loc) · 669 Bytes
/
index.html
File metadata and controls
17 lines (17 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Electron React Template</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="dist/app.css">
</head>
<body>
<script>
window.$ = window.jQuery = require('./bower_components/jquery/dist/jquery.min.js');
</script>
<script src="dist/app.js"></script>
<script src="http://localhost:35729/livereload.js"></script>
</body>
</html>