mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
e9da5fc411
* fix(deps): update react * Fix * Use createRoot * Update tests * Format * Fix test Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
46 lines
1.0 KiB
HTML
46 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Redux DevTools</title>
|
|
<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 src="/react.production.min.js"></script>
|
|
<script src="/react-dom.production.min.js"></script>
|
|
<script src="/redux-devtools-app.min.js"></script>
|
|
<script src="/port.js"></script>
|
|
<script>
|
|
const container = document.querySelector('#root');
|
|
const element = React.createElement(ReduxDevToolsApp, {
|
|
socketOptions: {
|
|
hostname: location.hostname,
|
|
port: reduxDevToolsPort,
|
|
autoReconnect: true,
|
|
},
|
|
});
|
|
ReactDOM.createRoot(container).render(element);
|
|
</script>
|
|
</body>
|
|
</html>
|