react-native-theoplayer
Version:
A THEOplayer video component for react-native.
12 lines (9 loc) • 399 B
text/typescript
import { ConfigPlugin } from '@expo/config-plugins';
import { withTHEOplayerAndroid } from './withTHEOplayerAndroid';
import { withTHEOplayerIOS } from './withTHEOplayerIOS';
const withTHEOplayerWrapper: ConfigPlugin = (config, props: any) => {
config = withTHEOplayerAndroid(config, props);
config = withTHEOplayerIOS(config, props);
return config;
};
export default withTHEOplayerWrapper;