import React from 'react'; import { CellFactory } from '../types/cell.type'; export interface CellProps { style?: React.CSSProperties, align?: "left" | "center" | "right" | "justify" | "inherit", children: CellFactory } export const Cell: React.FC = () => { return <> } export interface TextCellProps { style?: React.CSSProperties, align?: "left" | "center" | "right" | "justify" | "inherit", } export const TextCell: React.FC = () => { return <> }