Revisi Tampilan Admin

# fix :
- Tampilan Donasi
# feat :
- Penambahan App Information
## No Issuee
This commit is contained in:
2024-06-06 12:05:06 +08:00
parent 5b8cd3a4b6
commit 0e16d6501f
295 changed files with 2861 additions and 918 deletions

21
src/ui/CobaSatu.tsx Normal file
View File

@@ -0,0 +1,21 @@
"use client";
"use dev";
import { DevBox } from "next-dev";
import { Card } from "@mantine/core";
import { useShallowEffect } from "@mantine/hooks";
import { genFetchApi } from "@/util/genFetchApi";
export function CobaSatu() {
useShallowEffect(() => {
genFetchApi
.seeder({ isServer: false })
.then(async (v) => {
console.log(v)
})
}, []);
return (
<DevBox path="dnNjb2RlOi8vZmlsZS8vVXNlcnMvYmFnYXNiYW51bmEvRG9jdW1lbnRzL0JJUC9oaXBtaS9zcmMvdWkvQ29iYVNhdHUudHN4Ojc6MQ==">
<Card>ini percobaan</Card>
</DevBox>
);
}