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