add robots meta tag handling

This commit is contained in:
41666 2019-03-20 05:39:54 -05:00
parent 1a7b042351
commit a98ba13f90
3 changed files with 14 additions and 10 deletions

View file

@ -1,8 +1,9 @@
// @flow
import type { ServerSlug as BackendServerSlug } from '../services/presentation'
import type Router from 'next/router'
export type PageProps = {
router: {
query: {
[key: string]: string
}
}
router: Router
}
export type ServerSlug = BackendServerSlug