import type { Table as ReactTable } from "@tanstack/react-table"; import { Button } from "src/components"; import { intl } from "src/locale"; /** * This component should never render as there should always be 1 user minimum, * but I'm keeping it for consistency. */ interface Props { tableInstance: ReactTable; } export default function Empty({ tableInstance }: Props) { return (

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

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

); }