xph-form
Version:
This is a configurable form component that supports React
9 lines (8 loc) • 321 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import React from "react";
import style from "./index.module.css";
const ActionGroup = ({ formProps }) => {
const { renderActions } = formProps;
return _jsx("div", { className: style["group-wrapper"], children: renderActions?.() });
};
export default ActionGroup;