dark mode page add-doctor & user account

This commit is contained in:
Ehsan
2024-10-16 20:59:11 +03:30
parent b561b111ec
commit dee7f1ec27
14 changed files with 61 additions and 33 deletions
+3 -3
View File
@@ -2,12 +2,12 @@ import Cards from "./cards";
import Head from "./head";
import List from "./List";
function Bank({ data }) {
function Bank({ data, loading }) {
return (
<div className="opacity-page">
<Head />
<List data={data} loading={false} />
<Cards data={data} loading={false} />
<List data={data} loading={loading} />
<Cards data={data} loading={loading} />
</div>
);
}