diff --git a/example/example.js b/example/example.js index 29eb396..13a1ca1 100755 --- a/example/example.js +++ b/example/example.js @@ -1,2 +1,4 @@ require('./main.css'); -document.body.innerHTML = 'Hello world!'; \ No newline at end of file +var h1 = document.createElement('h1'); +h1.innerHTML = 'Hello world!'; +document.body.appendChild(h1); \ No newline at end of file