"use client"; import React from "react"; export interface ActionTabProps { config: any; onChange: (key: string, value: any) => void; children: React.ReactNode; } /** * 동작 탭: 클릭 이벤트, 네비게이션, 모달 열기, 확인 다이얼로그 등 동작 설정 * 실제 UI는 메인 ButtonConfigPanel에서 렌더링 후 children으로 전달 */ export const ActionTab: React.FC = ({ children }) => { return
{children}
; };