import { Mutation } from 'react-apollo' import gql from 'graphql-tag' import { CURRENT_USER } from './User' const USER_LOGOUT = gql` mutation USER_LOGOUT { userLogout } ` const UserLogout = props => ( {userLogout => } ) export default UserLogout