You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
294 B
7 lines
294 B
import axiosInstance from './index'
|
|
|
|
const axios = axiosInstance
|
|
|
|
export const getBooks = () => {return axios.get(`http://localhost:8000/api/`)}
|
|
|
|
export const postBook = (bookName, bookAuthor) => {return axios.post(`http://localhost:8000/api/books/`, {'name': bookName, 'author': bookAuthor})}
|
|
|