You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
646 B
20 lines
646 B
#include "pch.h"
|
|
#include "ScreenStackHeaderConfig.h"
|
|
#include "JSValueXaml.h"
|
|
#include "NativeModules.h"
|
|
|
|
namespace winrt {
|
|
using namespace Microsoft::ReactNative;
|
|
using namespace Windows::Foundation;
|
|
using namespace Windows::Foundation::Collections;
|
|
using namespace Windows::UI;
|
|
using namespace Windows::UI::Xaml;
|
|
using namespace Windows::UI::Xaml::Controls;
|
|
} // namespace winrt
|
|
|
|
namespace winrt::RNScreens::implementation {
|
|
ScreenStackHeaderConfig::ScreenStackHeaderConfig(
|
|
winrt::Microsoft::ReactNative::IReactContext reactContext)
|
|
: m_reactContext(reactContext) {}
|
|
} // namespace winrt::RNScreens::implementation
|