getQuestion.js 175 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import axios from 'axios'; const getQuestion = async () =>{ const res = axios.get("http://3.34.126.151:8000/getquestions"); return res; } export default getQuestion;