9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import { State } from './types';
|
||
|
|
||
|
export const getChannels = ( state: State ) => {
|
||
|
return state.channels;
|
||
|
};
|