20 lines
346 B
C
20 lines
346 B
C
|
#pragma once
|
|||
|
#include "MainPage.g.h"
|
|||
|
#include <winrt/Microsoft.ReactNative.h>
|
|||
|
|
|||
|
namespace winrt::videoplayer::implementation
|
|||
|
{
|
|||
|
struct MainPage : MainPageT<MainPage>
|
|||
|
{
|
|||
|
MainPage();
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
namespace winrt::videoplayer::factory_implementation
|
|||
|
{
|
|||
|
struct MainPage : MainPageT<MainPage, implementation::MainPage>
|
|||
|
{
|
|||
|
};
|
|||
|
}
|
|||
|
|