Yapılandırma dosyası nasıl saklanır ve React kullanılarak nasıl okunur
React.js'de yeniyim, veriyi sunucudan aldığım ve şu şekilde kullandığım bir bileşen uyguladım: CallEnterprise:function(TenantId){ fetchData('http://xxx.xxx.xx.xx:8090/Enterprises?TenantId='+TenantId+' &format=json').then(function(enterprises) { EnterprisePerspectiveActions.getEnterprise(enterprises); }).catch(function() { alert("There was some issue in API Call please contact Admin"); //ComponentAppDispatcher.handleViewAction({ // actionType: MetaItemConstants.RECEIVE_ERROR, // error: 'There was a problem getting the enterprises' //}); }); }, URL'yi yapılandırma dosyasında saklamak istiyorum, …