import { type FunctionComponent, type ReactNode } from 'react'; import styles from './Table.module.scss'; interface Props { children: ReactNode; } export const Header: FunctionComponent = ({ children }) => { return
{children}
; };