- Move all Launcher components to LANCommander.Launcher.UI namespace - Move all SCSS files next to components (when possible) - Refactor styles that control overflow of content into titlebar to MainWindow only - Remove use in launcher UI of SDK.Client
11 lines
No EOL
259 B
Text
11 lines
No EOL
259 B
Text
@namespace LANCommander.Launcher.UI
|
|
@using ListItem = LANCommander.Launcher.Models.ListItem
|
|
|
|
@if (CurrentItem?.DataItem is Data.Models.Game)
|
|
{
|
|
<GameDetails @key="CurrentItem.Key" />
|
|
}
|
|
|
|
@code {
|
|
[CascadingParameter] ListItem? CurrentItem { get; set; }
|
|
} |