Creating the Kanban board project
The KanbanBoard
project will be created by using the Empty Blazor WebAssembly App project template. First, we will add the TaskItem
class. Then, we will add a Dropzone
component. We will add three of the Dropzone
components to the Home page to create the Kanban board. Finally, we will add the ability to add new tasks to the Kanban board.
Getting started with the project
We need to create a new Blazor WebAssembly app. We do this as follows:
- Open Visual Studio 2019.
- Click the Create a new project button.
- In the Search for templates (Alt + S) textbox, enter
Blazor
and hit the Enter key.The following screenshot shows the Empty Blazor WebAssembly App project template that we created in Chapter 2, Building Your First Blazor WebAssembly Application:
- Select the Empty Blazor WebAssembly App project template and click the Next button.
- Enter
KanbanBoard
in the Project...