UNPKG

@dechains/cra-template-dapp

Version:

Create react app template with notification system, etherium wallet integration, MUI5 integration and other necessary packages required for base dApp development in REACTJS

9 lines (7 loc) 236 B
import axios from "axios"; import { BASE_API_URL } from "./config"; export const apiCall = axios.create({ baseURL: BASE_API_URL, timeout: 100000, headers: { Authorization: "Bearer " + localStorage.getItem("token") }, });