Change module import

This commit is contained in:
Daniel Schindler
2018-12-03 11:37:30 +01:00
parent a25925346a
commit 53c65039b9
5 changed files with 8 additions and 8 deletions

View File

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