chore: Product page shows list of categories associated with it (#3400)

This commit is contained in:
Riqwan Thamir
2023-03-07 10:04:25 +01:00
committed by GitHub
parent ed0f777431
commit bca731a148
5 changed files with 90 additions and 56 deletions

View File

@@ -6,6 +6,10 @@ import React, {
useState,
} from "react"
export enum FeatureFlag {
PRODUCT_CATEGORIES = "product_categories",
}
const defaultFeatureFlagContext: {
featureToggleList: Record<string, boolean>
isFeatureEnabled: (flag: string) => boolean