File: index.html

package info (click to toggle)
node-redux-devtools 3.13.1~git20230831-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,868 kB
  • sloc: javascript: 7,775; makefile: 20
file content (35 lines) | stat: -rw-r--r-- 640 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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>