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