File "table-row.js"

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

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

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

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