Add: - GridViewCustomSpan - GridView_4_4_4 Fix: - BackButtonAntTitle: penambahan new component - SelectCustom: penambahan container style Admin Donasi Add: - admin/donation/[id] Fix: - admin/donation/[status]/status Admin Fix: perubahan nama halaman sesuai fitur ### No Issue
35 lines
735 B
TypeScript
35 lines
735 B
TypeScript
import { Grid } from "@/components";
|
|
|
|
export const GridView_4_4_4 = ({
|
|
component1,
|
|
component2,
|
|
component3,
|
|
}: {
|
|
component1: React.ReactNode;
|
|
component2: React.ReactNode;
|
|
component3: React.ReactNode;
|
|
}) => {
|
|
return (
|
|
<Grid>
|
|
<Grid.Col
|
|
span={4}
|
|
style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}
|
|
>
|
|
{component1}
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={4}
|
|
style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}
|
|
>
|
|
{component2}
|
|
</Grid.Col>
|
|
<Grid.Col
|
|
span={4}
|
|
style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}
|
|
>
|
|
{component3}
|
|
</Grid.Col>
|
|
</Grid>
|
|
);
|
|
};
|