woocommerce/plugins/woocommerce-blocks/assets/js/views/attribute-select.jsx

18 lines
383 B
React
Raw Normal View History

2018-02-15 18:16:14 +00:00
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>
);
}
}