// REQ0053/profile-page // // PURPOSE: // - Provides functionality get user profile by id // // RULES: // - T.B.A. // import axios from 'axios'; import constants from '../constants'; function getProfileById(id: string) { return axios.get(`${constants.API_ENDPOINT}/v1/profile/${id}`); } export { getProfileById };