I created my react app using npx create-react-app my-app
but when I try to load the web application on IE11, it just prints a blank page.
I also added the polyfill by installing using the command yarn add react-app-polyfill
and then including the following :
import 'react-app-polyfill/ie9';
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';
inside src/index.tsx
. But still it loads the blank page. What should I do? I have no clue on how to proceed.