react-native-notificare-push-ui
Version:
Notificare Push UI React Native module.
12 lines (9 loc) • 401 B
text/typescript
import type { ConfigPlugin } from 'expo/config-plugins';
import { NotificarePushUIPluginProps } from '../types/types';
import { withNotificarePushUIIOSLocalizable } from './withNotificarePushUIIOSLocalizable';
export const withNotificarePushUIIOS: ConfigPlugin<
NotificarePushUIPluginProps
> = (config, props) => {
config = withNotificarePushUIIOSLocalizable(config, props);
return config;
};