File "table-body.js"

Full Path: /home/warrior1/public_html/plugins/elementor/app/assets/js/ui/table/table-body.js
File size: 338 bytes
MIME-type: text/x-java
Charset: utf-8

import { arrayToClassName } from 'elementor-app/utils/utils.js';

export default function TableBody( props ) {
	return (
		<tbody className={ arrayToClassName( [ 'eps-table__body', props.className ] ) }>
			{ props.children }
		</tbody>
	);
}

TableBody.propTypes = {
	children: PropTypes.any.isRequired,
	className: PropTypes.string,
};