@page "/"
<h1>Hello, world!</h1>
Welcome to your new app.
<input type="time" @bind="@MyTimeSpan" />
@MyTimeSpan
@code{
public TimeSpan MyTimeSpan {get;set;} = DateTime.Now.TimeOfDay;
}
namespace BlazorFiddleProject
{
using Microsoft.AspNetCore.Components.Builder;
using Microsoft.Extensions.DependencyInjection;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
}
public void Configure(IComponentsApplicationBuilder app)
{
app.AddComponent<App>("app");
}
}
}