import { CLASSES } from '@tabulus/constants'; import { Cell } from '../Cell'; import { Title } from './styled'; import type { ColumnProps } from './types'; import type { FC } from 'react'; const Column: FC = ({ id, title }: ColumnProps) => { return ( {title} ); }; export { Column }; export type { ColumnProps } from './types';