json-server axios get
const [a,setA ] = useState(null);
const ### = async () => {
const { data } = await axios.get("json-server port");
setA(data);
};
useEffect(() => {
###();
}, []);
json server port 부분에 열려있는 서버 주소를 적으면 그 데이터를 가지고 올수있다.routes 상세 경로는 json docs 참고