Created
October 2, 2020 09:16
-
-
Save sverhoeven/2e7d7cf5ccedd63a7632a6daa198aabb to your computer and use it in GitHub Desktop.
run-cpp-on-web: react
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
<form onSubmit={handleSubmit}> | |
<label> | |
Tolerance: | |
<input name="tolerance" type="number" value={tolerance} onChange={onToleranceChange}/> | |
</label> | |
<label> | |
Initial guess: | |
<input name="initial_guess" type="number" value={initial_guess} onChange={onGuessChange}/> | |
</label> | |
<input type="submit" value="Submit" /> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment