ERP-node/frontend/components/screen/config-panels/button/ActionTab.tsx

18 lines
496 B
TypeScript
Raw Permalink Normal View History

"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<ActionTabProps> = ({ children }) => {
return <div className="space-y-4">{children}</div>;
};