Files
twenty/packages/twenty-website/src/app/_components/oss-friends/CardContainer.tsx
T
Félix Malfait 5de1c2c31d New folder structure for website (#4159)
New folder structure
2024-02-23 17:42:13 +01:00

17 lines
331 B
TypeScript

'use client';
import styled from '@emotion/styled';
const Container = styled.div`
display: flex;
flex-wrap: wrap;
gap: 32px;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
`;
export const CardContainer = ({ children }: { children?: React.ReactNode }) => {
return <Container>{children}</Container>;
};