Admin Donation
Add: - (application)/admin/donation/ Component Admin Add: - _ShareComponent/GridView_3_3_6.tsx ### No Issue
This commit is contained in:
25
components/_ShareComponent/GridView_3_3_6.tsx
Normal file
25
components/_ShareComponent/GridView_3_3_6.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user