source: client_app/src/repository/login_repo.js@ 580ba1a

Last change on this file since 580ba1a was 17abe5e, checked in by i-ina <76742075+i-ina@…>, 3 years ago

react components for details and bugfix

  • Property mode set to 100644
File size: 275 bytes
Line 
1import axios from '../custom_axios/axios';
2
3const UserLogin = {
4 login: (email, password, type) => {
5 return axios.post("/login", {
6 "email": email,
7 "password": password,
8 "type": type
9 });
10 }
11}
12
13export default UserLogin;
Note: See TracBrowser for help on using the repository browser.