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