mirror of
https://github.com/zoriya/flood.git
synced 2025-12-21 06:35:14 +00:00
8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
import {createSelector} from 'reselect';
|
|
|
|
const clientSelector = (state) => {
|
|
return state.client;
|
|
};
|
|
|
|
export default clientSelector;
|