import type { Table as ReactTable } from "@tanstack/react-table"; interface Props { tableInstance: ReactTable; } function EmptyRow({ tableInstance }: Props) { return (

There are no items

); } export { EmptyRow };