1 files changed, 22 insertions, 0 deletions
diff --git a/BugMine.Web/Pages/Projects/Index.razor b/BugMine.Web/Pages/Projects/Index.razor
new file mode 100644
index 0000000..a24747c
--- /dev/null
+++ b/BugMine.Web/Pages/Projects/Index.razor
@@ -0,0 +1,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 { }
+}
\ No newline at end of file
|