Working parcel setup

This commit is contained in:
Patrick Smith
2018-08-02 13:51:54 -04:00
committed by richard-dds
parent ccf4108665
commit 630a3b0cd5
39 changed files with 349 additions and 72 deletions

4
static/js/index.js Normal file
View File

@@ -0,0 +1,4 @@
import classes from '../scss/atat.scss'
import './thing'

7
static/js/thing.js Normal file
View File

@@ -0,0 +1,7 @@
console.log('hanlo again')
window.onload = function() {
console.log('boop')
const thing = document.querySelector('#hello')
thing.innerHTML = 'hanlo friendo'
}