@aamal/p14-plugin-modale
Version:
The `p14-plugin-modal` as its name suggests, is a plugins developed as part of my OpenClassRooms training program. It is a React plugin allowing to display a modal alert, for more information go to the section "How the plugin works" ## Installation ```
18 lines (16 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ModalActions = ModalActions;
var _react = require("react");
/**
* Show actions wrapper
* @component
*/
function ModalActions(_ref) {
var children = _ref.children;
return /*#__PURE__*/_react.createElement("div", {
className: "modal-actions"
}, children);
}