import { FC, HTMLAttributes, ReactNode } from 'react';
export type ColumnProps = HTMLAttributes & {
  children: ReactNode;
};
/**
 * Column component.
 *
 * Render the body as a column.
 */
export const Column: FC = ({ children, ...props }) => {
  return {children}
;
};