Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
802ea004e71d52d90131517a4e319eb82259ee4d
/
.
/
internal
/
pkg_web
/
test
/
script.ts
blob: 1f0522f3540e16851aefe5a547a857120040041e [
file
] [
log
] [
blame
]
const
el
=
document
.
createElement
(
'div'
);
const
version
=
'0.0.0-PLACEHOLDER'
;
const
text
:
string
=
`Hello, World v${version}`
;
el
.
innerText
=
text
;
document
.
body
.
appendChild
(
el
);