import { FC } from "react"; import { MasterDetailConfig } from "./type"; import { Button } from "../ui/button"; export const MDAction: FC<{ md: MasterDetailConfig }> = ({ md }) => { return (
{md.ui.actions.length > 0 && md.ui.actions.map((e, idx) => { return ( ); })}
); };