ch4n3.yoon

Merge branch 'frontend'

......@@ -55,7 +55,10 @@ const SignIn = () => {
}
const signIn = () => {
http.post('/login').then(response => {
http.post('/login', {
userId: username,
password: password,
}).then(response => {
const { success, access_token } = response.data
if (success) {
localStorage.setItem('token', access_token)
......