SectionActionBar

The SectionActionBar component is a Blazor component used to create a flexible action bar section with customizable content.

Parameters

  • ChildContent: RenderFragment? Specifies the content to be rendered inside the action bar. It is optional.

  • Section: required string Defines the section title to be displayed. This parameter is required and must be provided.

Usage

<SectionActionBar Section="Your Section Title">
    @* Add action buttons or other content here *@
</SectionActionBar>

Last updated

Was this helpful?