Files
2026-01-23 20:20:58 +07:00

16 lines
263 B
TypeScript

export const EmptyRow = ({
message = "No assertions match this state.",
colspan = 4,
}: {
message?: string;
colspan?: number;
}) => {
return (
<tr>
<td colSpan={colspan} className="text-center">
{message}
</td>
</tr>
);
};