added breadcrumb for no pending task
This commit was merged in pull request #632.
This commit is contained in:
@@ -3,6 +3,7 @@ import Layout from '../Partials/Layout'
|
|||||||
import MyOffersFamilyTable from '../MyTasks/MyOffersFamilyTable'
|
import MyOffersFamilyTable from '../MyTasks/MyOffersFamilyTable'
|
||||||
import LoadingSpinner from '../Spinners/LoadingSpinner';
|
import LoadingSpinner from '../Spinners/LoadingSpinner';
|
||||||
import usersService from '../../services/UsersService';
|
import usersService from '../../services/UsersService';
|
||||||
|
import CustomBreadcrumb from '../Breadcrumb/CustomBreadcrumb';
|
||||||
|
|
||||||
export default function FamilyPendingOffer() {
|
export default function FamilyPendingOffer() {
|
||||||
const userApi = new usersService();
|
const userApi = new usersService();
|
||||||
@@ -37,9 +38,22 @@ export default function FamilyPendingOffer() {
|
|||||||
className="mb-10"
|
className="mb-10"
|
||||||
/>
|
/>
|
||||||
:
|
:
|
||||||
<div className='w-full h-[30rem] bg-white dark:bg-dark-white flex justify-center items-center rounded-2xl'>
|
<>
|
||||||
<p className='text-black dark:text-white'>No Record Found!</p>
|
<div className="mb-6">
|
||||||
</div>
|
<CustomBreadcrumb
|
||||||
|
title = {'Ready to Start'}
|
||||||
|
breadcrumb={
|
||||||
|
[
|
||||||
|
{ link: "/", title: "Home" },
|
||||||
|
{ link: "/pending", title: "Pending", active: true},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className='w-full h-[30rem] bg-white dark:bg-dark-white flex justify-center items-center rounded-2xl'>
|
||||||
|
<p className='text-black dark:text-white'>No Record Found!</p>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
}
|
}
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user