mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-12 01:18:39 +08:00
16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
|
const SettingsBlock = ( { className, components = [] } ) => {
|
||
|
const blockClassName = [ 'ppcp-r-settings-block', className ].filter(
|
||
|
Boolean
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<div className={ blockClassName.join( ' ' ) }>
|
||
|
{ components.map( ( Component, index ) => (
|
||
|
<Component key={ index } />
|
||
|
) ) }
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default SettingsBlock;
|