File size: 377 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { mergeHandlers } from 'calypso/state/action-watchers/utils';
import googleMyBusiness from './google-my-business';
import highlights from './highlights';
import notices from './notices';
import recentPostViews from './views/posts';
import chartCounts from './visits';
export default mergeHandlers( recentPostViews, googleMyBusiness, chartCounts, highlights, notices );
|