21 lines
333 B
JavaScript
21 lines
333 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { Placeholder } from '@wordpress/components';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import './style.scss';
|
||
|
|
||
|
/**
|
||
|
* Component displaying an attribute filter.
|
||
|
*/
|
||
|
const Block = () => {
|
||
|
return (
|
||
|
<Placeholder>Checkout block coming soon to store near you</Placeholder>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Block;
|