import { h } from 'preact'; export function Table({ children, className = '' }) { return ( {children}
); } export function Thead({ children, className = '' }) { return {children}; } export function Tbody({ children, className = '' }) { return {children}; } export function Tfoot({ children, className = '' }) { return {children}; } export function Tr({ children, className = '', index }) { return {children}; } export function Th({ children, className = '' }) { return {children}; } export function Td({ children, className = '' }) { return {children}; }