forked from clauderic/react-sortable-hoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 821 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>React Sortable</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi" />
<style>
@import url(https://fonts.googleapis.com/css?family=Montserrat:400);
html, body, #root {
width: 100%;
height: 100%;
}
body {
background-color: #f9f9f9;
display: table;
color: #333;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, arial, sans-serif;
}
#root {
display: table-cell;
vertical-align: middle;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="/static/bundle.js"></script>
</body>
</html>