25 lines
770 B
HTML
25 lines
770 B
HTML
<html>
|
|
|
|
<!-- This index file is common for both the standard and large examples. As to which project you are running
|
|
depends on whether you use 'npm run standard' or 'npm run large' -->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script type="text/javascript" src="dist/bundle.js" charset="utf-8"></script>
|
|
<!-- Example uses font awesome icons -->
|
|
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<!-- Put some spacing around the buttons - not needed, just makes it look nice -->
|
|
<style>
|
|
button {
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div id="myAppContainer"></div>
|
|
</body>
|
|
|
|
</html> |