Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Prioritize index.css over the implicit App.css (#2470)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryankang authored and wmonk committed Aug 7, 2017
1 parent 864ef28 commit ad5b884
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/react-scripts/template/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import registerServiceWorker from './registerServiceWorker';

ReactDOM.render(<App />, document.getElementById('root'));
registerServiceWorker();

0 comments on commit ad5b884

Please sign in to comment.