remotedev-extension
Version:
Use Redux DevTools in the Browser/Electron DevTools
33 lines (32 loc) • 554 B
HTML
<html>
<head>
<style>
html {
min-width: 350px;
min-height: 300px;
}
body {
position: fixed;
overflow: hidden;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#root {
height: 100%;
}
#root > div {
height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script>
// __remotedevOptionsSet__;
</script>
<script src="/js/devpanel.bundle.js"></script>
</body>
</html>