Search⌘ K
AI Features

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 need to add a NewTask component. We do this as follows:

  1. Return to Visual Studio.
  2. Right-click the Shared folder and select the “Add, Razor Component” option from the menu.
  3. Name the new component NewTask.
  4. Click the “Add” button.
  5. Remove the h3 element.
  6. Add the following markup:
...