2021-09-21 12:20:42 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2021-11-04 11:03:33 +00:00
|
|
|
import { withFilteredAttributes } from '@woocommerce/shared-hocs';
|
2021-09-21 12:20:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import Block from './block';
|
|
|
|
import attributes from './attributes';
|
|
|
|
|
|
|
|
export default withFilteredAttributes( attributes )( Block );
|