labhackercd/linguagem-simples-front

View on GitHub
src/components/Dashboard/Content/AgenciaCamara/fetchDataAgenciaCamara.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import axiosInstance from '../../../../auth/axiosApi'
import {API_RADIO_AGENCY_URL} from '../../../../api_urls'

export default async fetchDataAgenciaCamara => {

    const response = await axiosInstance.get(API_RADIO_AGENCY_URL, {
    });

    if(response.status===200){
        return response.data;
    }else{
        return null;
    }

};