mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
21 lines
432 B
C++
21 lines
432 B
C++
|
#include "pch.h"
|
|||
|
#include "MainPage.h"
|
|||
|
#if __has_include("MainPage.g.cpp")
|
|||
|
#include "MainPage.g.cpp"
|
|||
|
#endif
|
|||
|
|
|||
|
#include "App.h"
|
|||
|
|
|||
|
using namespace winrt;
|
|||
|
using namespace Windows::UI::Xaml;
|
|||
|
|
|||
|
namespace winrt::bluewallet::implementation
|
|||
|
{
|
|||
|
MainPage::MainPage()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
auto app = Application::Current().as<App>();
|
|||
|
ReactRootView().ReactNativeHost(app->Host());
|
|||
|
}
|
|||
|
}
|