Is there any way to detect IE browser with React and either redirect to a page or give any helpful message. I found something in JavaScript, but not sure how would I use it
This is the service I always use when doing JS/Browser based browser-detection: http://is.js.org/
if (is.ie() || is.edge()) { window.location.href = 'http://example.com'; }