Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -3,6 +3,7 @@ import { gql } from "apollo-boost"; | ... | @@ -3,6 +3,7 @@ import { gql } from "apollo-boost"; |
| 3 | import { useQuery } from "react-apollo-hooks"; | 3 | import { useQuery } from "react-apollo-hooks"; |
| 4 | import { ThemeProvider } from "styled-components"; | 4 | import { ThemeProvider } from "styled-components"; |
| 5 | import GlobalStyles from "../Styles/GlobalStyles"; | 5 | import GlobalStyles from "../Styles/GlobalStyles"; |
| 6 | +import Helmet from "./Helmet"; | ||
| 6 | import Theme from "../Styles/Theme"; | 7 | import Theme from "../Styles/Theme"; |
| 7 | import Router from "../Routes/Router"; | 8 | import Router from "../Routes/Router"; |
| 8 | 9 | ||
| ... | @@ -21,6 +22,7 @@ export default () => { | ... | @@ -21,6 +22,7 @@ export default () => { |
| 21 | <ThemeProvider theme={Theme}> | 22 | <ThemeProvider theme={Theme}> |
| 22 | <> | 23 | <> |
| 23 | <GlobalStyles /> | 24 | <GlobalStyles /> |
| 25 | + <Helmet /> | ||
| 24 | <Router isLoggedIn={isLoggedIn} /> | 26 | <Router isLoggedIn={isLoggedIn} /> |
| 25 | </> | 27 | </> |
| 26 | </ThemeProvider> | 28 | </ThemeProvider> | ... | ... |
-
Please register or login to post a comment