This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const isIE = /MSIE|Trident/.test(window.navigator.userAgent); | |
if (isIE) { | |
document.getElementById("app").innerHTML = | |
"<div class=\"browserInfo\"><p>The browser you are using is not supported.</p><p>Navigance currently supports Chrome, Safari and Firefox browsers. We recommend to use the latest version of our supported browsers to make best use of Navigance. </p></div>"; | |
} else { | |
import("./index-react.jsx"); | |
} |