export const EmptyRow = ({ message = "No assertions match this state.", colspan = 4, }: { message?: string; colspan?: number; }) => { return ( {message} ); };