feat: Complete Admin Phase 3 Donation screens migration to OS_Wrapper

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2026-04-15 11:42:28 +08:00
parent 115e9c49a2
commit e260ed546b
14 changed files with 804 additions and 44 deletions

View File

@@ -1,4 +1,5 @@
import { Spacing, StackCustom, ViewWrapper } from "@/components";
import { Spacing, StackCustom } from "@/components";
import OS_Wrapper from "@/components/_ShareComponent/OS_Wrapper";
import {
IconList,
IconPublish,
@@ -64,7 +65,7 @@ export default function AdminDonation() {
return (
<>
<ViewWrapper>
<OS_Wrapper>
<AdminTitlePage title="Donasi" />
<Spacing />
<StackCustom gap={"xs"}>
@@ -72,7 +73,7 @@ export default function AdminDonation() {
<AdminComp_BoxDashboard key={i} item={item} />
))}
</StackCustom>
</ViewWrapper>
</OS_Wrapper>
</>
);
}