Sign in
bazel
/
rules_typescript
/
baaf632de4b7eaf7314a04cbcce3231f013e094a
/
.
/
examples
/
devserver
/
app.ts
blob: a200b403a4c1a9ae77fb555b24ff87f18150e297 [
file
] [
log
] [
blame
]
const
body
=
document
.
body
;
const
textElement
=
document
.
createElement
(
'span'
);
textElement
.
innerText
=
'Hello from TypeScript'
;
// Append element to the body.
body
.
appendChild
(
textElement
);