React: Raising issue Warning: React depends on requestAnimationFrame. Make sure that you load a polyfill in older browsers. http://fb.me/react-polyfills

Created on 2 Nov 2017  路  2Comments  路  Source: facebook/react

I want to know how suppress this warning in IE < edge( such as IE 9, IE10, IE11 ), like below:
2017-11-02_162715

could some guys help me, thanks so much.

Most helpful comment

npm install --save raf

Then as your first import in entry point, before React:

import 'raf/polyfill';

All 2 comments

npm install --save raf

Then as your first import in entry point, before React:

import 'raf/polyfill';

okay, I'm appreciated that, thanks so much to you... ^-^ @gaearon

Was this page helpful?
0 / 5 - 0 ratings