mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Workshop - Added image management to existing entries Workshop - Fixed pagination in layouts page
14 lines
271 B
C#
14 lines
271 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.Root;
|
|
|
|
public partial class BlankView : ReactiveUserControl<BlankViewModel>
|
|
{
|
|
public BlankView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |