Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import React, { FC } from 'react'
const Body: FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>> = ({
children,
...props
}) => (
<tbody {...props} className="">
{children}
</tbody>
)
export default Body