Backstage
    Preparing search index...

    Props for CatalogTable.

    interface CatalogTableProps {
        actions?: (
            | Action<CatalogTableRow>
            | ((rowData: CatalogTableRow) => Action<CatalogTableRow>)
            | {
                action: (rowData: CatalogTableRow) => Action<CatalogTableRow>;
                position: string;
            }
        )[];
        columns?: TableColumn<CatalogTableRow>[]
        | CatalogTableColumnsFunc;
        emptyContent?: ReactNode;
        subtitle?: string;
        tableOptions?: Options<CatalogTableRow>;
        title?: string;
    }
    Index

    Properties

    actions?: (
        | Action<CatalogTableRow>
        | ((rowData: CatalogTableRow) => Action<CatalogTableRow>)
        | {
            action: (rowData: CatalogTableRow) => Action<CatalogTableRow>;
            position: string;
        }
    )[]
    emptyContent?: ReactNode
    subtitle?: string
    tableOptions?: Options<CatalogTableRow>
    title?: string

    A static title to use for the table. If not provided, a title will be generated based on the current Kind and Type filters and total number of items.