InkForge/app/InkForge.Desktop/Views/LandingView.axaml.cs

13 lines
229 B
C#

using Avalonia.ReactiveUI;
using InkForge.Desktop.ViewModels;
namespace InkForge.Desktop.Views;
public partial class LandingView : ReactiveUserControl<LandingViewModel>
{
public LandingView()
{
InitializeComponent();
}
}