/** @jsx jsx */ import { css, jsx } from '@emotion/core' import Group from './Group' type TableProps = { headers: React.ReactNode[] rows: React.ReactNode[][] } export default function Table({ headers, rows }: TableProps) { return (
| {header} | ))}
|---|
| {cell} | ))}