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