redux-devtools/examples/counter/index.html

23 lines
460 B
HTML

<html>
<head>
<title>Redux Counter Example</title>
<style>
/* unsure how to represent this in js, so it stays here for now */
@-webkit-keyframes fadeIn {
from { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeIn {
from { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<div id="root">
</div>
</body>
<script src="/static/bundle.js"></script>
</html>