Skip to content

Instantly share code, notes, and snippets.

@unicodeveloper
Created June 16, 2017 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unicodeveloper/aef76ac3733f05807446ade70def5096 to your computer and use it in GitHub Desktop.
Save unicodeveloper/aef76ac3733f05807446ade70def5096 to your computer and use it in GitHub Desktop.
import axios from 'axios';
const BASE_URL = 'https://loggerapp-jxruffzvrv.now.sh';
export function logNewApp(data) {
const url = `${BASE_URL}/api/log`;
return axios.post(url, data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment