move styles and js to the root directory

This commit is contained in:
Andrew Croce
2018-08-03 09:09:07 -04:00
parent 6d884f9e5b
commit bf3054908c
36 changed files with 1917 additions and 2 deletions

6
js/index.js Normal file
View File

@@ -0,0 +1,6 @@
import classes from '../styles/atat.scss'
import './thing'
console.log('hellooooo')

7
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'
}