import { Feature } from '../../types/types'; /** * Mapping of features to their corresponding names used on the CS dashboard. * * Each Feature should have a comment that describes it. * * It is important to keep this list updated with any changes to feature names. * * List of Feature Flags: https://contentsquare.atlassian.net/wiki/spaces/RD/pages/3601695115/MOB+List+of+Feature+Flags */ export const FeatureName = { /** * Represents the feature flag used for testing the implementation of feature flags. * Enabling or disabling this feature will result in different console.log messages. */ [Feature.checkFeatureFlagImplementation]: 'xpf_react_native_check_feature_flag', /** * Represents the feature flag used for collecting and reporting JS errors. */ [Feature.crashReporter]: 'xpf_react_native_crash_reporter', };