Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
a4bebf2d2da13d93e08e75bd720e2dff8a3a3afe
/
.
/
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
);