mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-22 22:42:54 +03:00
23 lines
460 B
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>
|