Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
f76e97b750bcc310ca1a2b4ed8ba16c4cd5792fe
/
.
/
examples
/
webapp
/
index.js
blob: 7f4ae3f1afbbe90af8c6b316da8410a04214db26 [
file
]
import
{
hello
}
from
'./strings.en'
;
const
el
=
document
.
createElement
(
'div'
);
el
.
innerText
=
hello
;
el
.
className
=
'ts1'
;
document
.
body
.
appendChild
(
el
);