We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66067a0 commit 8238c32Copy full SHA for 8238c32
fixtures/js/render.ts
@@ -1,5 +1,6 @@
1
function render() {
2
- document.getElementById('app').innerHTML = "<h1>Welcome to Your TypeScript App</h1>";
+ const html: string = "<h1>Welcome to Your TypeScript App</h1>";
3
+ document.getElementById('app').innerHTML = html;
4
}
5
6
export default render;
0 commit comments