overflow_app/public/index.html

22 lines
512 B
HTML
Raw Normal View History

2017-06-21 11:24:44 +00:00
<!DOCTYPE html>
<html>
2017-07-20 03:13:02 +00:00
2017-06-21 11:24:44 +00:00
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
2017-07-19 09:36:21 +00:00
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.auto.js"></script>
<![endif]-->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css"></link>
2017-07-20 03:13:02 +00:00
<style type="text/css">
.fullHeight {
height: 100%;
}
</style>
</head>
2017-07-19 09:36:21 +00:00
2017-06-21 11:24:44 +00:00
<body>
2017-07-20 09:46:42 +00:00
<div id="appContainer"></div>
2017-06-21 11:24:44 +00:00
</body>
2017-07-20 03:13:02 +00:00
</html>