Fix some more flow errors

This commit is contained in:
uwap 2017-11-14 13:23:55 +01:00
parent 48e9572925
commit 9cc827d5a6
2 changed files with 6 additions and 6 deletions

View file

@ -14,4 +14,6 @@ injectTapEventPlugin();
document.title = `${Config.space.name} Map`;
ReactDOM.render(<App config={Config} />, document.getElementById("content"));
// $FlowFixMe
const contentElement: Element = document.getElementById("content");
ReactDOM.render(<App config={Config} />, contentElement);