You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

user.js 200B

123456
  1. import { Post } from './index';
  2. export const loginAPI = async (username, password) => {
  3. const body = JSON.stringify({ Username: username, Password: password });
  4. return Post(`api/login`, body);
  5. };