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

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

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

); }