Add shared frontend primitive components

This commit is contained in:
2026-03-21 14:08:37 +01:00
parent bf19374558
commit ef3dd950ce
12 changed files with 502 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
namespace RolemasterDb.App.Components.Primitives;
public sealed record SegmentedTabItem(
string Value,
string Label,
string? Badge = null,
bool IsDisabled = false);