import React from 'react' import { StyledCardsStackSection } from './CardsStackSection.style' export type CardsStackSectionProps = React.HTMLAttributes export const CardsStackSection = ({ children, ...props }: CardsStackSectionProps): JSX.Element => ( {children} )