diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-05-25 14:06:53 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-05-25 14:06:53 -0400 |
| commit | 22635ea05dab85a71fa93dbb98f93da7670ef899 (patch) | |
| tree | b9e974dee484634d0401a9149c9a68f5537553db /frontend/components/Pagination.js | |
| parent | 549cfa77c9fec0936c3a8d87a49b69401cbfbd7a (diff) | |
Delete and Add refetch refinements
Diffstat (limited to 'frontend/components/Pagination.js')
| -rw-r--r-- | frontend/components/Pagination.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/components/Pagination.js b/frontend/components/Pagination.js index 8b25e06..b77f8f6 100644 --- a/frontend/components/Pagination.js +++ b/frontend/components/Pagination.js @@ -4,6 +4,7 @@ import styled from 'styled-components'; import Link from 'next/link'; import PropTypes from 'prop-types'; import gql from 'graphql-tag'; +import Head from 'next/head'; import { perPage } from '../config'; const PAGINATION_QUERY = gql` @@ -49,6 +50,11 @@ const Pagination = props => ( const pages = Math.ceil(aggregate.count / perPage); return ( <PaginationStyles data-test="pagination"> + <Head> + <title> + Sick Fits! — Page {page} of {pages} + </title> + </Head> <Link prefetch href={{ |
