about summary refs log tree commit diff
path: root/BugMine.Web/Pages/Projects/Index.razor
blob: a24747ca930b66656ae4fc8f8938499faf6bcb7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@page "/Projects"
<h3>Projects</h3>

@if (true) {
    <p>There are no projects to display.</p>
}

<p>Did not find the project board you are looking for?</p>
<LinkButton href="/Projects/New">Create new board</LinkButton>

@code {

    private List<Project> projects = new List<Project>();

    

    protected override async Task OnInitializedAsync() {
        
    }
    
    private class Project { }
}