Add very simple prediction delta UI
This commit is contained in:
10
src/app/prediction-delta/prediction-delta.component.html
Normal file
10
src/app/prediction-delta/prediction-delta.component.html
Normal file
@ -0,0 +1,10 @@
|
||||
<h4>Enter the names of two predictions to compare</h4>
|
||||
|
||||
<rb-form-input label="Prediction A" [(ngModel)]="nameA"></rb-form-input>
|
||||
<rb-form-input label="Prediction B" [(ngModel)]="nameB"></rb-form-input>
|
||||
<p *ngIf="delta">
|
||||
The result is {{ delta }}.
|
||||
</p>
|
||||
<rb-icon-button icon="forward-right" mode="primary" (click)="compare()">
|
||||
Compare Predictions
|
||||
</rb-icon-button>
|
Reference in New Issue
Block a user