mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-16 06:36:48 +03:00
f454ac8a7f
* Build all * Lint all * Test (almost) all * Test CLI * Format * Make styled-components a peer dependency * Add missing peer dependencies * Fix electron fixture
14 lines
286 B
HTML
14 lines
286 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Electron Test</title>
|
|
</head>
|
|
<body>
|
|
<span id="counter">0</span>
|
|
<button id="increment">+</button>
|
|
<button id="decrement">-</button>
|
|
<script src="./dist/renderer.js"></script>
|
|
</body>
|
|
</html>
|