mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
4 lines
143 B
JavaScript
4 lines
143 B
JavaScript
// Mock for @wordpress/components
|
|
export const Button = ( { children, ...props } ) => {
|
|
return <button { ...props }>{ children }</button>;
|
|
};
|