Fix image example
This commit is contained in:
parent
ed8e4b290f
commit
faf4e764d4
|
|
@ -1,2 +1,4 @@
|
|||
require('./main.css');
|
||||
document.body.innerHTML = 'Hello world!';
|
||||
var h1 = document.createElement('h1');
|
||||
h1.innerHTML = 'Hello world!';
|
||||
document.body.appendChild(h1);
|
||||
Loading…
Reference in New Issue