11 lines
198 B
C#
11 lines
198 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace Nebula.Launcher.Views.Pages;
|
||
|
|
|
||
|
|
public partial class ContentBrowserView : UserControl
|
||
|
|
{
|
||
|
|
public ContentBrowserView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|