"use client"; import React from "react"; import { Label } from "@/components/ui/label"; import { Input } from "@/components/ui/input"; interface ManualConfigPanelProps { config?: { value?: string; placeholder?: string; }; onChange: (config: { value?: string; placeholder?: string }) => void; isPreview?: boolean; } export const ManualConfigPanel: React.FC = ({ config = {}, onChange, isPreview = false, }) => { return (

사용자가 폼에서 직접 입력합니다

onChange({ ...config, placeholder: e.target.value })} placeholder="예: 부서코드 입력" disabled={isPreview} className="h-8 text-xs sm:h-10 sm:text-sm" />

사용자에게 표시될 안내 문구입니다

); };