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
Родитель 2ee03ed440
Коммит 9c49b17efd
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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
Просмотреть файл

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