To Do
The Todo component provides an interactive to-do list with an input field and an add button. Users can add new tasks and remove existing ones.
@using BlazorInterfaceLibrary.Bil.Classes
@component.Render(this);
@code {
BilComponent components { get; set; } = new Todo();
}
The code above load the Todo component in your page.