import * as React from 'react'; import I18n from 'i18n-js'; interface Props { name: string; color: string; } const PostStatusLabel = ({ name, color, }: Props) => ( {(name || I18n.t('common.no_status')).toUpperCase()} ); export default PostStatusLabel;