18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
const { __ } = wp.i18n;
|
|
const { Toolbar, withAPIData, Dropdown } = wp.components;
|
|
|
|
/**
|
|
* When the display mode is 'Attribute' search for and select product attributes to pull products from.
|
|
*/
|
|
export class ProductsAttributeSelect extends React.Component {
|
|
|
|
render() {
|
|
return (
|
|
<div className="product-attribute-select">
|
|
TODO: Attribute select screen
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|