Replaced remaining parts of app to use Redux.

This commit is contained in:
Patrick Fic
2020-01-31 13:57:27 -08:00
parent 3060c16dd3
commit e2518a95ab
12 changed files with 104 additions and 168 deletions

View File

@@ -1,25 +0,0 @@
import { gql } from "apollo-boost";
export const GET_CURRENT_USER = gql`
query GET_CURRENT_USER {
currentUser @client {
email
displayName
token
uid
photoUrl
}
}
`;
export const GET_CURRENT_SELECTED_NAV_ITEM = gql`
query GET_CURRENT_SELECTED_NAV_ITEM {
selectedNavItem @client
}
`;
export const GET_LANGUAGE = gql`
query GET_USER_LANGUAGE {
language @client
}
`;