Add: - (application)/admin/donation/ Component Admin Add: - _ShareComponent/GridView_3_3_6.tsx ### No Issue
26 lines
666 B
TypeScript
26 lines
666 B
TypeScript
import { Grid } from "@/components";
|
|
|
|
export const GridView_3_3_6 = ({
|
|
component1,
|
|
component2,
|
|
component3,
|
|
}: {
|
|
component1: React.ReactNode;
|
|
component2: React.ReactNode;
|
|
component3: React.ReactNode;
|
|
}) => {
|
|
return (
|
|
<Grid>
|
|
<Grid.Col span={3} style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}>
|
|
{component1}
|
|
</Grid.Col>
|
|
<Grid.Col span={3} style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}>
|
|
{component2}
|
|
</Grid.Col>
|
|
<Grid.Col span={6} style={{ justifyContent: "center", paddingRight: 5, paddingLeft: 5 }}>
|
|
{component3}
|
|
</Grid.Col>
|
|
</Grid>
|
|
);
|
|
};
|