Add an example of DOM access

This commit is contained in:
Alex Crichton
2018-03-21 08:26:00 -07:00
parent 8e894fcfc5
commit dd054fa357
11 changed files with 123 additions and 0 deletions

4
examples/dom/index.js Normal file
View File

@ -0,0 +1,4 @@
// For more comments about what's going on here, check out the `hello_world`
// example
const rust = import("./dom");
rust.then(m => m.run());