blob: 5b519bdac3b69f520b03a1ffb5dc00288d2544eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import Config from 'react-native-config';
export default class Configuration {
constructor(environment) {
this.environment = environment;
}
value_for(key) {
return Config[key];
}
}
|