27522c1e1c
- Theming adjustments (still needs a lot of work)
14 lines
338 B
C#
14 lines
338 B
C#
using Microsoft.AspNetCore.Components;
|
|
using DeepDrftModels.Entities;
|
|
|
|
namespace DeepDrftWeb.Client.Controls;
|
|
|
|
public partial class TrackPlayer : ComponentBase
|
|
{
|
|
[Parameter] public TrackEntity? Track { get; set; }
|
|
|
|
private void HandlePlayClick()
|
|
{
|
|
// TODO: Implement play functionality with injected service
|
|
}
|
|
} |