Skip to content

Instantly share code, notes, and snippets.

@flopshot
Last active September 14, 2019 16:17
Show Gist options
  • Save flopshot/10b35107bd0ba824c36b338b09a1f4bf to your computer and use it in GitHub Desktop.
Save flopshot/10b35107bd0ba824c36b338b09a1f4bf to your computer and use it in GitHub Desktop.
The configuration file of our WhiteLabel logic
// WhiteLabelConfig.tsx
import { NativeModules } from 'react-native';
export default class WhiteLabelConfig {
public static readonly APP_NAME: string = 'WhiteLabelDemo';
public static readonly PRIMARY_COLOR: string = '#fdf6e3';
public static readonly PRIMARY_TEXT_COLOR: string = '#657b83';
public static readonly GREETING_TEXT: string = 'Welcome';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment