Setup UI components

This commit is contained in:
pancakes 2025-09-11 23:51:33 +10:00
parent 7d4590b155
commit c0d01c34bd
Signed by: pancakes
SSH key fingerprint: SHA256:yrp4c4hhaPoPG07fb4QyQIgAdlbUdsJvUAydJEWnfTw
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1 @@
@using PancakesWeb.Components.UI

View file

@ -0,0 +1,7 @@
<time datetime="@Date.ToString("O")">
@Date.ToUniversalTime().ToString("G")
</time>
@code {
[Parameter, EditorRequired] public required DateTime Date { get; set; }
}