21 lines
391 B
C++
21 lines
391 B
C++
|
#include "pch.h"
|
||
|
#include "ReactPackageProvider.h"
|
||
|
|
||
|
#include "NativeModules.h"
|
||
|
|
||
|
|
||
|
|
||
|
using namespace winrt::Microsoft::ReactNative;
|
||
|
|
||
|
namespace winrt::VideoPlayer::implementation
|
||
|
{
|
||
|
|
||
|
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
||
|
{
|
||
|
AddAttributedModules(packageBuilder);
|
||
|
}
|
||
|
|
||
|
} // namespace winrt::VideoPlayer::implementation
|
||
|
|
||
|
|