import React from 'react'; import Helmet from 'react-helmet-async'; type Props = { title?: string, description?: string, image?: string, children?: any, type?: 'article', }; export default ({ title, description, image, type, children }: Props) => { return ( {title} {children} ); };