added customize loader for each section

This commit is contained in:
Prathamesh Gursal
2024-10-09 01:28:54 +05:30
parent 57cfafeb34
commit 5b5281e50c
5 changed files with 112 additions and 38 deletions

View File

@@ -105,7 +105,7 @@ export default function Logs() {
<div className="mt-8">
{loadingLogs ? (
<SkeletonLoader />
<SkeletonLoader component={'logs'} />
) : (
<LogsTable logs={logs} setPage={setPage} />
)}