mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 19:51:10 +00:00
21 lines
377 B
C++
21 lines
377 B
C++
#include "pch.h"
|
|||
|
|
#include "ReactPackageProvider.h"
|
||
|
|
|
||
|
|
#include "NativeModules.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
using namespace winrt::Microsoft::ReactNative;
|
||
|
|
|
||
|
|
namespace winrt::WebViewWindows::implementation
|
||
|
|
{
|
||
|
|
|
||
|
|
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
||
|
|
{
|
||
|
|
AddAttributedModules(packageBuilder);
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace winrt::WebViewWindows::implementation
|
||
|
|
|
||
|
|
|