9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import { StoreNoticesState } from './default-state';
|
||
|
|
||
|
export const getContainers = (
|
||
|
state: StoreNoticesState
|
||
|
): StoreNoticesState[ 'containers' ] => state.containers;
|