mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
* Chore: moves localstorage helper as a shared utility and refactors constants * Refactors constants file * Fixes merge conflicts * Delete constants.js --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
/* global axios */
|
|
import wootConstants from 'dashboard/constants/globals';
|
|
|
|
export const getTestimonialContent = () => {
|
|
return axios.get(wootConstants.TESTIMONIAL_URL);
|
|
};
|