• This project
    • Loading...
  • Sign in

김원진 / khusat-front

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • khusat-front
  • src
  • api
  • getResult.js
  • 이준호's avatar
    [REFACTOR] redux-thunk 미들웨어 추가로 리팩토링 + api 모듈화 작업 · 63a71dbb
    63a71dbb
    이준호 authored 2020-12-04 20:43:33 +0900
getResult.js 161 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
import axios from 'axios';

const getResult = async (answer) => {
    const res = await axios.post("submit",answer);
    return res;
}

export default getResult;