I have used create-react-app to create a react app. (Woohoo!)
The app runs well when I am developing it.
When I run 'npm build' and then host the build folder locally using python SimpleHTTPServer and the app works well. It also works on another machine hosted locally.
I used gh-pages to build and deploy the app to github at https://interpolated.github.io/ojclient/
The html loads, the js loads, and the css loads yet the page doesn't render. There are no console errors. It is almost as though the js doesn't run.
Are there any reasons the js wouldn't run when hosted on github?
Any help would be greatly appreciated, without error messages it is v. difficult to know where to go.
Could it have something to do with react-router, which I am using?

