import { MetaKind } from '@ts/types/app'; import { useIntl } from 'react-intl'; import { MetaItem } from '..'; const Author = ({ name, kind }: { name: string; kind: MetaKind }) => { const intl = useIntl(); return ( ); }; export default Author;