Skip to content

Instantly share code, notes, and snippets.

@Faliszek
Created July 29, 2018 17:52
Show Gist options
  • Save Faliszek/453b6a6bee4debdebcd09b715d2a1993 to your computer and use it in GitHub Desktop.
Save Faliszek/453b6a6bee4debdebcd09b715d2a1993 to your computer and use it in GitHub Desktop.
export const CampaignCreator = withRouter(
injectIntl(
compose(
graphql(CREATE_CAMPAIGN, { name: "createCampaign" }),
graphql(UPDATE_CAMPAIGN_NAME, { name: "updateCampaignName" }),
graphql(UPDATE_CAMPAIGN_SOURCE, { name: "updateCampaignSource" }),
graphql(FINISH_CAMPAIGN, { name: "finishCampaign" }),
graphql(FILE_UPLOAD, { name: "singleUpload" })
)(CampaignCreatorComponent)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment