# Voting
## feat - Create function - Get list by status id - Get one vote by id ### No issuue
This commit is contained in:
9
src/app/dev/admin/vote/child/riwayat/page.tsx
Normal file
9
src/app/dev/admin/vote/child/riwayat/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { AdminVote_Riwayat } from "@/app_modules/admin/voting";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<AdminVote_Riwayat />
|
||||
</>
|
||||
);
|
||||
}
|
||||
7
src/app/dev/admin/vote/child/table_publish/page.tsx
Normal file
7
src/app/dev/admin/vote/child/table_publish/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { AdminVote_TablePublish } from "@/app_modules/admin/voting";
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<AdminVote_TablePublish/>
|
||||
</>
|
||||
}
|
||||
8
src/app/dev/admin/vote/child/table_reject/page.tsx
Normal file
8
src/app/dev/admin/vote/child/table_reject/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import { AdminVote_TableReject } from "@/app_modules/admin/voting";
|
||||
|
||||
|
||||
export default async function Page() {
|
||||
return<>
|
||||
<AdminVote_TableReject/>
|
||||
</>
|
||||
}
|
||||
9
src/app/dev/admin/vote/child/table_review/page.tsx
Normal file
9
src/app/dev/admin/vote/child/table_review/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { AdminVote_TableReview } from "@/app_modules/admin/voting";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<AdminVote_TableReview />
|
||||
</>
|
||||
);
|
||||
}
|
||||
9
src/app/dev/admin/vote/main/page.tsx
Normal file
9
src/app/dev/admin/vote/main/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { AdminVote_Main } from "@/app_modules/admin/voting";
|
||||
|
||||
export default async function Page() {
|
||||
return (
|
||||
<>
|
||||
<AdminVote_Main />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user