import { createAsyncThunk } from "@reduxjs/toolkit"; import axiosInstance from "../../api/axios"; import { LoginResponse } from "./types"; export const login = createAsyncThunk( "auth/login", async (values) => { const res = await axiosInstance.post( "/login", values ); return res; } );