saleor-dashboard/.featureFlags/generated.tsx

20 lines
514 B
TypeScript
Raw Permalink Normal View History

// @ts-nocheck
import K35081 from "./images/filters.png"
const product_filters = () => (<><p><img src={K35081} alt="new filters"/></p>
<p>Experience the new look and enhanced abilities of new fitering mechanism.
Easily combine any criteria you want, and quickly browse their values.</p>
</>)
export const AVAILABLE_FLAGS = [{
name: "product_filters",
displayName: "Products filtering",
component: product_filters,
visible: true,
content: {
enabled: false,
payload: "default",
}
}] as const;