Skip to content

Commit

Permalink
feat(components) abstract components out of App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nijikokun committed Apr 16, 2018
1 parent b137087 commit 47bede5
Show file tree
Hide file tree
Showing 29 changed files with 864 additions and 9,422 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ function createWindow () {
});

ipcMain.on('HTTP_REQUEST', (event, arg) => {
console.log(arg.method, arg.url, arg.options)
// console.log(arg.method, arg.url, arg.options)
axios[arg.method](arg.url, arg.options)
.then(response => {
console.log(arg.url, response.data)
// console.log(arg.url, response.data)
event.sender.send(arg.onSuccess, response)
})
.catch(error => {
Expand Down
8,635 changes: 0 additions & 8,635 deletions package-lock.json

This file was deleted.

Loading

0 comments on commit 47bede5

Please sign in to comment.