10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
import axios from "axios";
|
|
|
|
const getPersons = () => {
|
|
return axios.get("http://localhost:3001/persons");
|
|
};
|
|
const addPerson = (personData) => {
|
|
return axios.post("http://localhost:3001/persons", personData);
|
|
};
|
|
|
|
export default { getPersons, addPerson };
|