
Removed dependency which we're not actually using for anything. Change-Id: I4ced0fa4437b7c731c6a8c2e6bc7fa65be901820
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
import 'babel-polyfill';
|
|
import 'isomorphic-fetch';
|
|
|
|
export default class Test {
|
|
getUrl (url) {
|
|
return fetch(url)
|
|
.then((response) => {
|
|
return response;
|
|
});
|
|
}
|
|
}
|