Add: - admin/forum/report-posting - admin/forum/report-comment - admin/forum/posting - admin/forum/[id] Component Fix: - screens/Admin/listPageAdmin - app/(application)/admin/_layout - Admin/TitlePage - Admin/BackButtonAntTitle - Admin/BoxTitlePage Package Install Add: - react-native-toast-message: untuk menampilkan toast ### No Issue
20 lines
467 B
TypeScript
20 lines
467 B
TypeScript
import { Grid } from "@/components";
|
|
|
|
export const GridDetail_4_8 = ({
|
|
label,
|
|
value,
|
|
}: {
|
|
label: React.ReactNode;
|
|
value: React.ReactNode;
|
|
}) => {
|
|
return (
|
|
<Grid>
|
|
<Grid.Col span={4} style={{ justifyContent: "center", paddingRight: 10 }}>
|
|
{label}
|
|
</Grid.Col>
|
|
<Grid.Col span={8} style={{ justifyContent: "center" }}>
|
|
{value}
|
|
</Grid.Col>
|
|
</Grid>
|
|
);
|
|
}; |