14 lines
257 B
C#
14 lines
257 B
C#
|
|
using Avalonia.ReactiveUI;
|
||
|
|
|
||
|
|
using InkForge.Common.ViewModels.Landing;
|
||
|
|
|
||
|
|
namespace InkForge.Common.Views.LandingViews;
|
||
|
|
|
||
|
|
public partial class OpenRecentView : ReactiveUserControl<OpenRecentViewModel>
|
||
|
|
{
|
||
|
|
public OpenRecentView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|