Add file for header

This commit is contained in:
2025-02-20 20:58:45 +01:00
parent 81c8498fc1
commit 4f04f61df6
4 changed files with 23 additions and 0 deletions

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();
}
}