import { FC, HTMLAttributes } from 'react';
import classNames from 'classnames';
import styles from './styles.module.scss';
type IProps = HTMLAttributes & {
children: any;
size: number;
};
const CellGrid: FC = ({ children, size, className, ...props }) => (
{children}
);
export { CellGrid };