13 lines
227 B
C#
13 lines
227 B
C#
using Avalonia.ReactiveUI;
|
|
|
|
using InkForge.Common.ViewModels;
|
|
|
|
namespace InkForge.Common.Views;
|
|
|
|
public partial class LandingView : ReactiveUserControl<LandingViewModel>
|
|
{
|
|
public LandingView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|