meetup-web-mocks
Version:
Meetup Web Mocks
28 lines (26 loc) • 683 B
JavaScript
import {
MOCK_GROUP_COMMUNICATION,
MOCK_GROUP_COMMUNICATION_FOLLOWERS,
MOCK_GROUP_COMMUNICATION_SUGGESTED_FOLLOWERS
} from './api';
import {
MOCK_COMMENTS_LIST,
} from '../../api';
export const MOCK_COMM_APP_STATE = {
groupCommunication: {
type: 'groupCommunication',
value: MOCK_GROUP_COMMUNICATION
},
groupCommunicationComments: {
type: 'groupCommunicationComments',
value: MOCK_COMMENTS_LIST
},
groupCommunicationFollowers: {
type: 'groupCommunicationFollowers',
value: MOCK_GROUP_COMMUNICATION_FOLLOWERS
},
groupCommunicationSuggestedFollowers: {
type: 'groupCommunicationSuggestedFollowers',
value: MOCK_GROUP_COMMUNICATION_SUGGESTED_FOLLOWERS
}
};