Add header for game list #3

Merged
Egamorf merged 14 commits from feature/add-header-for-games-list into main 2025-02-27 01:09:05 +01:00
4 changed files with 23 additions and 0 deletions
Showing only changes of commit 4f04f61df6 - Show all commits

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.BlazorApp.Pages.Games.Components
{
public partial class GameHeader
{
}
}

View File

@@ -0,0 +1,5 @@
<div class="header-tab">
<div class="icon" @onclick="HandleIconClicked">
<img src="icon.png" alt="Game Ideas">
</div>
</div>

View File

@@ -0,0 +1,10 @@
namespace GameIdeas.BlazorApp.Shared.Components;
public partial class Header
{
private Task HandleIconClicked()
{
throw new NotImplementedException();
}
}