Job cards

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-03-14 06:31:34 -04:00
parent 67df22a99e
commit 0c32419a52
11 changed files with 420 additions and 176 deletions
+5 -1
View File
@@ -1,10 +1,14 @@
import React from "react";
import MarketPlace from "../components/MarketPlace";
import usersService from "../services/UsersService";
export default function MarketPlacePage() {
const userApi = new usersService();
const activeJobList = userApi.getActiveJobList();
console.log("activeJobList->",activeJobList);
return (
<>
<MarketPlace />
<MarketPlace activeJobList={activeJobList} />
</>
);
}
+1 -1
View File
@@ -7,7 +7,7 @@ export default function MyTaskPage() {
const userApi = new usersService();
const activeJobList = userApi.getActiveJobList();
debugger;
//debugger;
return (
<>
<MyTasks />