| 1234567891011 |
- import Axios from 'axios';
- import { Fish, Insect } from 'types';
- export const getFishes = (): Promise<Fish[]> => Axios.get(`${process.env.REACT_APP_API}/fishes`).then(result => result.data);
- export const getInsects = (): Promise<Insect[]> => Axios.get(`${process.env.REACT_APP_API}/insects`).then(result => result.data);
- export default {
- getFishes,
- getInsects
- }
|