Created
December 15, 2025 18:34
-
-
Save JessicaWachtel/d25ebef21a225089d5374c56984e93eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <h2>Wasm 2025 Component Demo</h2> | |
| <input type="number" id="num1" value="40"> | |
| <input type"number" id="num2" value="2"> | |
| <button onclick="doMath()">Add with Wasm</button> | |
| <p id="result">Result will appear here.</p> | |
| <!-- Load our JS entry point as a module --> | |
| <script type="module" src="./index.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment