export const Table = ({ thead, tbody }) => (
{thead}{tbody}
) export const Head = ({ children }) => ( {children} ) export const Cell = ({ children }) => ( {children} )