mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-03-22 19:28:17 +08:00
5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
const app = document.getElementById('app');
|
|
app.innerHTML = 'hello world blah';
|
|
});
|