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:
bhaal275 2015-03-24 09:22:57 +01:00
parent 2ee03ed440
commit 9c49b17efd
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,6 @@
<title>Kitematic</title>
</head>
<body>
<script src="Main.js"></script>
<script src="Startup.js"></script>
</body>
</html>

1
src/Startup.js Normal file
View File

@ -0,0 +1 @@
require('./Main');