import React from 'react'; import { NOOP } from '@sendbird/uikit-utils'; import { createGroupChannelNotificationsModule } from '../domain/groupChannelNotifications'; import type { GroupChannelNotificationsFragment, GroupChannelNotificationsModule, } from '../domain/groupChannelNotifications/types'; const createGroupChannelNotificationsFragment = ( initModule?: Partial, ): GroupChannelNotificationsFragment => { const GroupChannelNotificationsModule = createGroupChannelNotificationsModule(initModule); return ({ onPressHeaderLeft = NOOP, channel }) => { return ( ); }; }; export default createGroupChannelNotificationsFragment;