'use client' import type { FC } from 'react' import { RiSearchLine } from '@remixicon/react' import { memo } from 'react' import { useTranslation } from 'react-i18next' type TemplateSearchProps = { value: string onChange: (value: string) => void } const TemplateSearch: FC = ({ value, onChange, }) => { const { t } = useTranslation('workflow') return (
) } export default memo(TemplateSearch)