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