Ви не можете вибрати більше 25 тем
			Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 123456789101112131415 | 
							- import { toState } from '../base/redux';
 - 
 - /**
 -  * Tells whether or not the notifications are enabled and if there are any
 -  * notifications to be displayed based on the current Redux state.
 -  *
 -  * @param {Object|Function} stateful - The redux store state.
 -  * @returns {boolean}
 -  */
 - export function areThereNotifications(stateful) {
 -     const state = toState(stateful);
 -     const { enabled, notifications } = state['features/notifications'];
 - 
 -     return enabled && notifications.length > 0;
 - }
 
 
  |