@implements ICanDecrement @* While it looks somewhat ridiculous to nest so many CascadingValue components, it simplifies the E2E test and is not intended as a representative use case. Each of the CascadingValue components here is configured differently for the test. *@

@functions { CounterDTO counterState = new CounterDTO { NumClicks = 100 }; bool currentFlagValue1; bool currentFlagValue2; public void DecrementCount() { counterState.NumClicks--; StateHasChanged(); } }