This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { useQuery } from "react-apollo-hooks"; | |
| import { gql } from "apollo-boost"; | |
| import { initAgencies, selectAgency } from "../agencies"; | |
| import useRedux from "./useRedux"; | |
| import useLoaded from "./useLoaded"; | |
| const agencyQuery = gql` | |
| query Agencies { ... } | |
| `; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import { string } from "prop-types"; | |
| import set from "lodash.set"; | |
| import { useSSR } from "react-i18next"; | |
| import i18n from "i18next"; | |
| import { useQuery } from "react-apollo-hooks"; | |
| import { gql } from "apollo-boost"; | |
| import i18next from "./i18next"; | |
| import { NamespaceProvider } from "./namespace"; |
OlderNewer