Blog/Components/Pages/Calc.razor 395 B · 16 lines · raw · history
| 1 | "/Calc" |
| 2 | <PageTitle>Calculator</PageTitle> |
| 3 | <PageScript Src="./Components/Pages/Calc.razor.js"/> |
| 4 | |
| 5 | <main> |
| 6 | <p>A rpn calculator</p> |
| 7 | <form id="form" class="flex-row"> |
| 8 | <input id="input" type="text" placeholder="1 2 +"/> |
| 9 | <input type="submit" value="Evaluate"> |
| 10 | </form> |
| 11 | <Log/> |
| 12 | |
| 13 | <Panel Legend="Available stack operations"> |
| 14 | <StackOps/> |
| 15 | </Panel> |
| 16 | </main> |