'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import { Settings01 } from '@/app/components/base/icons/src/vender/line/general' import { BookOpen01 } from '@/app/components/base/icons/src/vender/line/education' const I18N_PREFIX = 'datasetCreation.stepOne.website' type Props = { onSetting: () => void } const Header: FC = ({ onSetting, }) => { const { t } = useTranslation() return (
{t(`${I18N_PREFIX}.jinaReaderTitle`)}
{t(`${I18N_PREFIX}.jinaReaderDoc`)}
) } export default React.memo(Header)