import NextHead from 'next/head'; import React, { PropsWithChildren } from 'react'; type HeadProps = PropsWithChildren<{ title?: string }>; const BASE_TITLE = 'Expo Documentation'; const Head = ({ title, children }: HeadProps) => ( {title ? `${title} - ${BASE_TITLE}` : BASE_TITLE} {children} ); export default Head;