23 lines
490 B
Plaintext
23 lines
490 B
Plaintext
@page "/TestCal"
|
|
|
|
|
|
<h3>TestCal</h3>
|
|
|
|
<CalendarMonth DtRif="@dtCurr" MainCss="table table-dark table-borderless" DateSelected="DisplayDate" DateCheck="@DateCheck" SingleWeek="@singleWeek"></CalendarMonth>
|
|
|
|
|
|
|
|
<div class="d-flex justify-content-between">
|
|
<div>
|
|
<b>@($"{dtCurr:ddd dd.MM.yyyy}")</b>
|
|
</div>
|
|
<div>
|
|
<button class="btn btn-primary" @onclick="() => resetCal()">Reset</button>
|
|
</div>
|
|
<div>
|
|
single: <b>@singleWeek</b>
|
|
</div>
|
|
</div>
|
|
|
|
|