Skip to content

Commit df8bbde

Browse files
committed
Adding the initial entry point ("npm run build" or "dev-server" can now be run without issue)
1 parent 6c4f5df commit df8bbde

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/app.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Import Dependencies
2+
import React from 'react'
3+
import ReactDOM from 'react-dom'
4+
5+
// Import Components
6+
import Splash from 'Components/splash/splash'
7+
8+
// Load Base Styling
9+
import 'Utilities/scss/reset'
10+
11+
//
12+
ReactDOM.render((
13+
<Splash />
14+
), document.getElementById('root'))

0 commit comments

Comments
 (0)