Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import Axios from "axios";
  2.  
  3. const API_URL = "http://localhost:8080/instructors/Przemek/courses";
  4.  
  5. class CourseDataService{
  6. retrieveDataFromApi(){
  7. return Axios.get('${API_URL}')
  8. }
  9. }
  10.  
  11. export default new CourseDataService()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement