mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
922985f9ea
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
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>
|