From 9c49b17efd4a0a4db74f14803ab5dfe8f168375b Mon Sep 17 00:00:00 2001 From: bhaal275 Date: Tue, 24 Mar 2015 09:22:57 +0100 Subject: [PATCH] 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. --- index.html | 2 +- src/Startup.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 src/Startup.js diff --git a/index.html b/index.html index 86d233b8db..2301b021e4 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,6 @@ Kitematic - + diff --git a/src/Startup.js b/src/Startup.js new file mode 100644 index 0000000000..03f16bf78f --- /dev/null +++ b/src/Startup.js @@ -0,0 +1 @@ +require('./Main'); \ No newline at end of file