Files
hipmi/src/app/dev/vote/main/beranda/page.tsx
Bagasbanuna02 e629157960 # Voting
## feat
- Voting user
- Halaman kontribusi
- Halaman riwayat
### No issuue
2024-02-16 17:20:06 +08:00

12 lines
326 B
TypeScript

import { Vote_Beranda } from "@/app_modules/vote";
import { Vote_getAllListPublish } from "@/app_modules/vote/fun/get/get_all_list_publish";
export default async function Page() {
const dataVote = await Vote_getAllListPublish()
return (
<>
<Vote_Beranda dataVote={dataVote as any} />
</>
);
}