Creating the NewTask Component
Explore how to create and integrate the NewTask component in a Blazor WebAssembly Kanban board. Learn to manage task input, handle events, and dynamically add tasks to enhance your app's interactivity.
We'll cover the following...
We'll cover the following...
We need to add a NewTask component. We do this as follows:
- Return to Visual Studio.
- Right-click the
Sharedfolder and select the “Add, Razor Component” option from the menu. - Name the new component
NewTask. - Click the “Add” button.
- Remove the
h3element. - Add the following markup:
...