Blog/Components/Pages/Calc.razor 422 B · 16 lines · raw · history

1 @page "/Calc"
2 <PageTitle>Calculator</PageTitle>
3 <script type="module" src="@Assets["Components/Pages/Calc.razor.js"]"></script>
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>