redux-devtools/packages/redux-devtools-remote/examples/toggle-monitoring/index.html

36 lines
640 B
HTML
Raw Normal View History

<!doctype html>
2021-10-28 23:39:47 +03:00
<html>
<head>
<title>Redux counter example</title>
<style>
html,
body,
#root,
#container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#container > p {
padding: 10px;
margin: auto;
font: 20px Arial;
}
button {
padding: 5px 15px;
font: bold 16px Arial;
cursor: pointer;
}
iframe {
width: 100%;
height: calc(100% - 55px);
}
</style>
</head>
<body>
<div id="root"></div>
<script src="/static/bundle.js"></script>
</body>
</html>