/* eslint-disable react-hooks/exhaustive-deps */ 'use client' import stateProfileDesa from '@/app/admin/(dashboard)/_state/desa/profile'; import colors from '@/con/colors'; import { Box, Image, Paper, SimpleGrid, Skeleton, Stack, Text, Divider, Tooltip } from '@mantine/core'; import { useEffect } from 'react'; import { useProxy } from 'valtio/utils'; import { IconUser, IconBriefcase, IconUsers, IconTargetArrow } from '@tabler/icons-react'; function ProfilPerbekel() { const state = useProxy(stateProfileDesa.profilPerbekel) useEffect(() => { state.findUnique.load("edit") }, []) const { data, loading } = state.findUnique if (loading || !data) { return ( ) } return ( Profil Perbekel Foto Perbekel { e.currentTarget.src = "/perbekel.png"; }} loading="lazy" /> Perbekel Desa Darmasaba {"I.B. Surya Prabhawa Manuaba, S.H.,M.H.,NL.P."} Biodata Pengalaman Pengalaman Organisasi Program Kerja Unggulan ); } export default ProfilPerbekel;