-
-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathITabHeader.cs
More file actions
24 lines (21 loc) · 687 Bytes
/
ITabHeader.cs
File metadata and controls
24 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
namespace BootstrapBlazor.Components;
/// <summary>
/// ITabHeader interface
/// </summary>
public interface ITabHeader
{
/// <summary>
/// Render method
/// </summary>
/// <param name="renderFragment"></param>
void Render(RenderFragment renderFragment);
/// <summary>
/// Get the id of the tab header
/// </summary>
/// <returns></returns>
string GetId();
}