import { Accessor, For } from "solid-js"; import { TableStore, ColumnProps } from '.'; type ColgroupProps = { data: TableStore } export function Colgroup (props: ColgroupProps) { return {(col: ColumnProps, index: Accessor) => { const style = () => ({ width: col.width }); return }} }