adding some skeleton to the todo app

This commit is contained in:
Ken
2019-01-23 11:14:49 -08:00
parent 1c5b6cc9a7
commit 8b0a0f7569
14 changed files with 569 additions and 8 deletions

6
step01/index.html Normal file
View File

@@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<body>
<div id="app"></div>
</body>
</html>

View File

@@ -0,0 +1,4 @@
document.addEventListener('DOMContentLoaded', function() {
const app = document.getElementById('app');
app.innerHTML = 'hello world blah';
});