1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-08 13:18:07 +00:00

8 lines
179 B
JavaScript
Raw Normal View History

2018-12-03 11:37:30 +01:00
// For more comments about what's going on here, check out the `hello_world`
// example
const rust = import('./pkg/todomvc');
rust
.then(m => m.run())
2018-12-03 11:37:30 +01:00
.catch(console.error);