Fixup compiler warnings for Todo MVC example

This commit is contained in:
Jonathan Kingston
2019-02-11 18:43:23 +00:00
parent a0c8514e66
commit 5c81125b86
2 changed files with 5 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
// For more comments about what's going on here, check out the `hello_world`
// example
import('./pkg/todomvc')
const rust = import('./pkg/todomvc');
rust
.then(m => m.run())
.catch(console.error);