ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Props for TabLink. A plain anchor plus optional search-history recording; extra props are spread onto the underlying MUI Link.

    const props: TabLinkProps = { href: "https://example.com/p/1", children: "View" };
    
    interface TabLinkProps {
    /** Destination URL; opened in a background tab (or a new window outside the extension). */
    href: string;
    /** Link content. */
    children: ReactNode;
    /** Optional history entry recorded when the link is clicked. */
    history?: HistoryEntry;
    /** Additional props forwarded to the underlying MUI `Link`. */
    [key: string]: unknown;
    }
    interface TabLinkProps {
        href: string;
        children: ReactNode;
        history?: HistoryEntry;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional props forwarded to the underlying MUI Link.

    Index

    Properties

    href: string

    Destination URL; opened in a background tab (or a new window outside the extension).

    children: ReactNode

    Link content.

    history?: HistoryEntry

    Optional history entry recorded when the link is clicked.