mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
17 lines
359 B
C#
17 lines
359 B
C#
using Bloxstrap.ViewModels;
|
|
|
|
namespace Bloxstrap.Views.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for BootstrapperPage.xaml
|
|
/// </summary>
|
|
public partial class BootstrapperPage
|
|
{
|
|
public BootstrapperPage()
|
|
{
|
|
DataContext = new BootstrapperViewModel(this);
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|