Function headerBar

  • Creates a header bar component that can be used to display a title and description.

    Parameters

    • props: HeaderBarProps

      Configuration object for the header bar

    Returns Element

    A JSX element representing the header bar component

    Basic usage with title and description

    headerBar({
    title: "Header title",
    description: "Header description"
    });