Add frontend tests and other stuff
[recipes.git] / frontend / index.js
diff --git a/frontend/index.js b/frontend/index.js
new file mode 100644 (file)
index 0000000..ebc5567
--- /dev/null
@@ -0,0 +1,8 @@
+// Note that a dynamic `import` statement here is required due to
+// webpack/webpack#6615, but in theory `import { greet } from './pkg';`
+// will work here one day as well!
+const rust = import('./pkg');
+
+rust
+  .then(m => m.greet('Paul!'))
+  .catch(console.error);
\ No newline at end of file