Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
8709fc78d2dd1d579bc972859c44c1949e9ccaed
/
.
/
internal
/
pkg_web
/
test
/
script.ts
blob: fea48a2e442b59712ed9b96627a22739f830c47e [
file
] [
log
] [
blame
]
const
el
=
document
.
createElement
(
'div'
);
const
text
:
string
=
'Hello, World'
;
el
.
innerText
=
text
;
document
.
body
.
appendChild
(
el
);