mirror of https://github.com/docker/docs.git
A fix required to load only one instance of React in the application. Without such fix, on windows application loads two instances of React at start time, and crashes.
This commit is contained in:
parent
2ee03ed440
commit
9c49b17efd
|
@ -6,6 +6,6 @@
|
|||
<title>Kitematic</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="Main.js"></script>
|
||||
<script src="Startup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
require('./Main');
|
Loading…
Reference in New Issue