wix-style-react
Version:
13 lines (11 loc) • 346 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
var FixedFooter = function FixedFooter(_ref) {
var children = _ref.children;
return /*#__PURE__*/React.cloneElement(children, {});
};
FixedFooter.displayName = 'Page.FixedFooter';
FixedFooter.propTypes = {
children: PropTypes.element.isRequired
};
export default FixedFooter;