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.
8 lines
294 B
8 lines
294 B
|
2 years ago
|
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})}
|