mirror of
https://github.com/penpot/penpot.git
synced 2026-07-25 15:38:21 +00:00
24 lines
422 B
HTML
24 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import initWasmModule from '/js/graph-wasm.js';
|
|
|
|
let Module = null;
|
|
function init(moduleInstance) {
|
|
Module = moduleInstance;
|
|
}
|
|
|
|
console.log("Loading module");
|
|
initWasmModule().then(Module => {
|
|
init(Module);
|
|
Module._hello();
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|