Files
ncd-fe/src/hooks/useApi.ts
2023-09-18 16:08:54 -05:00

10 lines
224 B
TypeScript

import api from 'soapbox/api';
import { useGetState } from './useGetState';
/** Use stateful Axios client with auth from Redux. */
export const useApi = () => {
const getState = useGetState();
return api(getState);
};