/** @format */ /** * External dependencies */ import PropTypes from 'prop-types'; /** * `EmptyTable` displays a blank space with an optional message passed as a children node * with the purpose of replacing a table with no rows. * It mimics the same height a table would have according to the `numberOfRows` prop. * * @return { object } - */ const EmptyTable = ( { children, numberOfRows } ) => { return (