import { CORE_LAYOUT_IDS } from "@medusajs/admin-shared" import { LayoutComposer } from "../../../components/layout-composer" import { useFeatureFlag } from "../../../providers/feature-flag-provider" import { CustomerListTable } from "./components/customer-list-table" import { ConfigurableCustomerListTable } from "./components/customer-list-table/configurable-customer-list-table" export const CustomersList = () => { const isViewConfigEnabled = useFeatureFlag("view_configurations") return ( {isViewConfigEnabled ? ( ) : ( )} ), }} /> ) }