import type { Table as ReactTable } from "@tanstack/react-table"; import { Button } from "src/components"; import { intl } from "src/locale"; interface Props { tableInstance: ReactTable; } export default function Empty({ tableInstance }: Props) { return (

{intl.formatMessage({ id: "streams.empty" })}

{intl.formatMessage({ id: "empty-subtitle" })}

); }