mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
adding some skeleton to the todo app
This commit is contained in:
6
step01/index.html
Normal file
6
step01/index.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,4 @@
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const app = document.getElementById('app');
|
||||
app.innerHTML = 'hello world blah';
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user