mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +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());
|
|
}
|
|
}
|