kernel.js file is not mapped with /main
app.MapGet("/main", async context =>
{
var pipeWriter = context.Response.BodyWriter;
pipeWriter.Write($"{ui.Wat(vm)}");
await pipeWriter.FlushAsync();
});
The Increment method not incrementing Count value in Button Text
void Increment(Event e)
{
ViewModel.Count++;
}
kernel.js file is not mapped with /main
The Increment method not incrementing Count value in Button Text