Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
bbbc8db711d3dd2d6474c46c4e6501f3efc453ff
/
.
/
e2e
/
webapp
/
app.js
blob: 1e29b6e0b370f0529fc727db466e9902475a722c [
file
]
import
(
'./strings'
).
then
(
m
=>
{
const
msg
=
document
.
createElement
(
'span'
);
msg
.
innerText
=
m
.
hello
();
document
.
body
.
appendChild
(
msg
);});