'use client' import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import { Icon3Dots } from '@/app/components/base/icons/src/vender/line/others' import Button from '@/app/components/base/button' const I18N_PREFIX = 'datasetCreation.stepOne.website' type Props = { onConfig: () => void } const NoData: FC = ({ onConfig, }) => { const { t } = useTranslation() return (
🔥
{t(`${I18N_PREFIX}.fireCrawlNotConfigured`)}
{t(`${I18N_PREFIX}.fireCrawlNotConfiguredDescription`)}
) } export default React.memo(NoData)