Add: - /admin/collaboration/[id]/reject-input.tsx - /api-admin/api-admin-collaboration.ts Fix: - Integrasi ke tampilan UI app/(application)/admin/collaboration/[id]/[status].tsx app/(application)/admin/collaboration/index.tsx app/(application)/admin/collaboration/publish.tsx components/_ShareComponent/Admin/TableTitle.tsx components/_ShareComponent/Admin/TableValue.tsx ### No Issue
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import Grid from "@/components/Grid/GridCustom";
|
|
import TextCustom from "@/components/Text/TextCustom";
|
|
|
|
export default function AdminTitleTable({
|
|
title1,
|
|
title2,
|
|
title3,
|
|
}: {
|
|
title1: string;
|
|
title2: string;
|
|
title3: string;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Grid>
|
|
<Grid.Col
|
|
span={3}
|
|
style={{
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
paddingLeft: 5,
|
|
paddingRight: 5,
|
|
}}
|
|
>
|
|
<TextCustom truncate bold align="center">
|
|
{title1}
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={3}
|
|
style={{ alignItems: "center", justifyContent: "center", paddingLeft: 5, paddingRight: 5 }}
|
|
>
|
|
<TextCustom truncate bold align="center">
|
|
{title2}
|
|
</TextCustom>
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={6}
|
|
style={{ alignItems: "center", justifyContent: "center", paddingLeft: 5, paddingRight: 5 }}
|
|
>
|
|
<TextCustom truncate bold align="center">{title3}</TextCustom>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</>
|
|
);
|
|
}
|