import React from 'react' import { useTranslation } from 'react-i18next' type TitleProps = { name: string } const Title = ({ name, }: TitleProps) => { const { t } = useTranslation() return (
{t('datasetPipeline.onlineDocument.pageSelectorTitle', { name })}
) } export default React.memo(Title)