DNA transcription and translation in wasm with rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
360 B

  1. // A dependency graph that contains any wasm must all be imported
  2. // asynchronously. This `bootstrap.js` file does the single async import, so
  3. // that no one else needs to worry about it again.
  4. import("./index.js")
  5. .catch(e => console.error("Error importing `index.js`:", e));
  6. import("./app.js")
  7. .catch(e => console.error("Error importing `app.js`:", e));