From cbac4ec5e6a4f9fd1b4d1c07fb2964bd79cdea7c Mon Sep 17 00:00:00 2001 From: wildscotsmen Date: Mon, 3 Dec 2018 03:04:42 -0500 Subject: [PATCH] Moved index.css into css folder for consistency's sake. --- src/{ => css}/index.css | 0 src/index.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{ => css}/index.css (100%) diff --git a/src/index.css b/src/css/index.css similarity index 100% rename from src/index.css rename to src/css/index.css diff --git a/src/index.js b/src/index.js index 6efd2d7..c7183e0 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ import React from 'react'; import ReactDOM from 'react-dom'; -import './index.css'; -import App from './App'; +import './css/index.css'; +import App from './App.js'; import registerServiceWorker from './registerServiceWorker'; ReactDOM.render(, document.getElementById('root'));