This commit is contained in:
Ka-wai Wong 2019-01-23 12:53:57 -08:00
Родитель b8af78b317
Коммит c1878dd180
3 изменённых файлов: 10 добавлений и 1 удалений

5
package-lock.json сгенерированный
Просмотреть файл

@ -2766,6 +2766,11 @@
}
}
},
"css-vars-ponyfill": {
"version": "1.16.2",
"resolved": "https://registry.npmjs.org/css-vars-ponyfill/-/css-vars-ponyfill-1.16.2.tgz",
"integrity": "sha512-cnF2KwwMPjU+P5jgDnPv/o+RioqDyjw81YNLki3rEPDp28xYE0zjpN23RaFF/pimmS4G4MG1eJtSYGaf19mvyw=="
},
"css-what": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.2.tgz",

Просмотреть файл

@ -4,6 +4,7 @@
"description": "A Chrome DevTools extension for helping developers onboard onto and debug their Mezzurite setup",
"main": "index.js",
"dependencies": {
"css-vars-ponyfill": "^1.16.2",
"normalize.css": "^8.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",

Просмотреть файл

@ -1,10 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import cssVars from 'css-vars-ponyfill';
import 'normalize.css';
import './index.css';
import App from './components/App.js';
import './index.css';
// The only reason for using React Router DOM is to have ALT for the chrome extension
// MemoryRouter is used because this is not a traditional browser environment
@ -14,3 +15,5 @@ ReactDOM.render((
// </MemoryRouter>
), document.getElementById('root')
);
cssVars();