@uifabric/utilities
Version:
Fluent UI React utilities for building components.
10 lines • 305 B
JavaScript
var _baseUrl = '';
/** Sets the current base url used for fetching images. */
export function getResourceUrl(url) {
return _baseUrl + url;
}
/** Gets the current base url used for fetching images. */
export function setBaseUrl(baseUrl) {
_baseUrl = baseUrl;
}
//# sourceMappingURL=resources.js.map