mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
36 lines
640 B
HTML
36 lines
640 B
HTML
<!DOCTYPE html>
|
|
<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>
|