UNPKG

@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 ```

19 lines (17 loc) 369 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ModalTitle = ModalTitle; var _react = require("react"); /** * Show title wrapper * @component */ function ModalTitle(_ref) { var children = _ref.children; return /*#__PURE__*/_react.createElement("h3", { className: "modal-title", id: "modal-title" }, children); }