-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed Microsoft's 'help' from csproj
- Loading branch information
1 parent
5e3c1d5
commit 79faa59
Showing
2 changed files
with
15 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
@model HydroCounter | ||
|
||
<div class="flex flex-row"> | ||
<div class="flex flex-row join join-horizontal"> | ||
Count: <strong>@Model.Count</strong> | ||
@* x-on:click="localStorage.setItem('last-count',@Model.Count)" *@ | ||
@* x-on:click="localStorage.setItem('last-count',@Model.Count)" *@ | ||
|
||
|
||
<button | ||
class="btn btn-primary join-item" | ||
hydro-on:click="@(() => Model.Add())"> | ||
Add | ||
</button> | ||
|
||
<button hydro-on:click="@(() => Model.Reset())"> | ||
<button | ||
class="btn btn-secondary join-item" | ||
|
||
hydro-on:click="@(() => Model.Reset())"> | ||
Reset | ||
</button> | ||
|
||
<div x-data="{ index: 0 }"> | ||
<strong x-text="index"></strong> | ||
<button x-on:click="index = index + 1">Add</button> | ||
<button | ||
class="btn btn-accent join-item" | ||
|
||
x-on:click="index = index + 1"> | ||
Add | ||
</button> | ||
</div> | ||
</div> |
This file contains 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