summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2017-07-05 22:38:16 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2017-07-05 22:38:16 -0700
commit947318e33c247577495be4f7eb1a7f6b3d168dc1 (patch)
tree3e3f1af343c73e88f816efcbef8231ebc5e4d7fd
parent819ce81d4032eca1002dacf9972758387d6efc7a (diff)
Update import order so css stays together in build
-rw-r--r--src/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js
index 08ea033..7bc5a5c 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,12 +1,12 @@
import React from 'react'
import ReactDOM from 'react-dom'
+import Layout from './components/layout/layout'
+
import './index.css'
import '../node_modules/font-awesome/css/font-awesome.css'
import '../fonts/beachbar-bold/beachbar-bold.css'
-import Layout from './components/layout/layout'
-
ReactDOM.render(<Layout />, document.getElementById('root'))
export default Layout