Skip to content

Instantly share code, notes, and snippets.

View dnets's full-sized avatar

Dmitry Nets dnets

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import * as axios from "axios";
import { getCookie } from "./utils";
export default class Api {
constructor() {
this.api_token = null;
this.client = null;
this.api_url = process.env.REACT_APP_API_ENDPOINT;
}