import React from 'react'; import { Button } from '@zhst/meta'; import { useThrottleFn } from '@zhst/hooks'; export default (function () { var ok = function ok() { return useThrottleFn(function () { return console.log('123'); }); }; return /*#__PURE__*/React.createElement(Button, { onClick: function onClick() { return ok(); } }, "\u6D4B\u8BD5"); });