import React, { TableHTMLAttributes } from "react"; import styles from "./Table.module.css"; export function Table(props: TableHTMLAttributes) { const className = [styles.table, props.className ?? ""].join(" "); return ; }