create async thunk:
this is my node js api route
router.post('/', upload.single('image'), protect, setAd)
this is my react js code
export const sellBike = (bikeData) => API.post("/", bikeData);
my react js api
const API = axios.create({baseURL:"http://localhost:8000"});