react-native-template-team-isl
Version:
Boilarplate by team-isl!
14 lines (11 loc) • 416 B
text/typescript
const Config = {
REACT_NATIVE_SERVER_API_URL: 'https://api.jikan.moe/v4',
REACT_NATIVE_SERVER_API_FULL_URL: 'https://api.jikan.moe/v4',
REACT_NATIVE_SERVER_API_KEY: '', // any ApiKey Here!
};
const getFullApiUrl = (endpoint: string | undefined): string | undefined => {
if (endpoint && endpoint.length > 0) {
return Config.REACT_NATIVE_SERVER_API_FULL_URL + endpoint;
}
};
export { Config, getFullApiUrl };