import clsx from 'clsx'; import type { FC } from 'react'; type ContainerProps = { children: Array | JSX.Element; className?: string; }; export const Container: FC = ({ className, ...props }) => { return (
); };