diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-05-03 16:04:41 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-05-03 16:04:41 +0200 |
commit | ca5907998ecf09d8c1c5341a3645caa00fc38c67 (patch) | |
tree | 65445ac06d6642de1365f5832c75fa0f5170b223 /src/client/react | |
parent | 4ccd16db1c53bc7ef58273d6cc30ae5b8d2b6b2b (diff) |
Add polyfills for iOS and IE
Diffstat (limited to 'src/client/react')
-rw-r--r-- | src/client/react/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/react/index.js b/src/client/react/index.js index 5fa7d0d..2a66f82 100644 --- a/src/client/react/index.js +++ b/src/client/react/index.js @@ -18,6 +18,8 @@ * */ +import 'babel-polyfill'; +import 'whatwg-fetch'; import React from 'react'; import ReactDOM from 'react-dom'; import moment from 'moment'; |