Skip to content

Commit 205b54b

Browse files
committed
Update docs to reference correct component types
Updated documentation pages for NumberInput, PasswordInput, RadioInput, RangeInput, Switch, TextAreaInput, TextInput, TimeInput, Grid, and Icon to reference their correct component types instead of "Alert". Fixed demo links and DocxTable TItem types for each component. Expanded Grid docs with sections for GridColumn, GridColumns, GridDetailView, and GridSettings. Cleaned up Icon docs to only include parameters. These changes ensure accurate API documentation for each component.
1 parent 1982bf3 commit 205b54b

10 files changed

Lines changed: 81 additions & 69 deletions

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/NumberInput/NumberInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_NumberInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="NumberInput<object>" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="NumberInput<object>" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="NumberInput<object>" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(NumberInput<object>);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_NumberInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/PasswordInput/PasswordInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_PasswordInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="PasswordInput" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="PasswordInput" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="PasswordInput" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(PasswordInput);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_PasswordInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/RadioInput/RadioInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_RadioInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="RadioInput" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="RadioInput" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="RadioInput" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(RadioInput);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_RadioInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/RangeInput/RangeInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_RangeInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="RangeInput<object>" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="RangeInput<object>" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="RangeInput<object>" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(RangeInput<object>);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_RangeInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/Switch/Switch_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Switch" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="Switch" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="Switch" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="Switch" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(Switch);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_Switch;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/TextAreaInput/TextAreaInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_TextAreaInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="TextAreaInput" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="TextAreaInput" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="TextAreaInput" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(TextAreaInput);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_TextAreaInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/TextInput/TextInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_TextInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="TextInput" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="TextInput" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="TextInput" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(TextInput);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_TextInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Form/TimeInput/TimeInput_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_TimeInput" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="TimeInput<object>" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="TimeInput<object>" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="TimeInput<object>" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(TimeInput<object>);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_TimeInput;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Grid/Grid_Doc_01_Documentation.razor

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,47 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Grid_Overview" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="Grid Parameters" PageUrl="@pageUrl" Link="grid-parameters">
18+
<DocxTable TItem="Grid<object>" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="Grid Methods" PageUrl="@pageUrl" Link="grid-methods">
22+
<DocxTable TItem="Grid<object>" DocType="DocType.Methods" />
2323
</Section>
2424

25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
25+
<Section Class="p-0" Size="HeadingSize.H3" Name="Grid Events" PageUrl="@pageUrl" Link="grid-events">
26+
<DocxTable TItem="Grid<object>" DocType="DocType.Events" />
27+
</Section>
28+
29+
<Section Class="p-0" Size="HeadingSize.H3" Name="GridColumn Parameters" PageUrl="@pageUrl" Link="grid-column-parameters">
30+
<DocxTable TItem="GridColumn<object>" DocType="DocType.Parameters" />
31+
</Section>
32+
33+
<Section Class="p-0" Size="HeadingSize.H3" Name="GridColumns Parameters" PageUrl="@pageUrl" Link="grid-columns-parameters">
34+
<DocxTable TItem="GridColumns" DocType="DocType.Parameters" />
35+
</Section>
36+
37+
<Section Class="p-0" Size="HeadingSize.H3" Name="GridColumn Parameters" PageUrl="@pageUrl" Link="grid-column-parameters">
38+
<DocxTable TItem="GridColumn<object>" DocType="DocType.Parameters" />
39+
</Section>
40+
41+
<Section Class="p-0" Size="HeadingSize.H3" Name="GridDetailView Parameters" PageUrl="@pageUrl" Link="grid-detailview-parameters">
42+
<DocxTable TItem="GridDetailView<object>" DocType="DocType.Parameters" />
43+
</Section>
44+
45+
<Section Class="p-0" Size="HeadingSize.H3" Name="GridSettings Members" PageUrl="@pageUrl" Link="grid-settings-members">
46+
<DocxTable TItem="GridSettings" DocType="DocType.Parameters" />
2747
</Section>
2848

2949
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
50+
private const string componentName = nameof(Grid<object>);
51+
private const string pageUrl = DemoRouteConstants.Docs_URL_Grid;
3252
private const string pageTitle = componentName;
3353
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3454
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Icons/Icon_Doc_01_Documentation.razor

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Icons" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
19-
</Section>
20-
21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
23-
</Section>
24-
25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
18+
<DocxTable TItem="Icon" DocType="DocType.Parameters" />
2719
</Section>
2820

2921
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
22+
private const string componentName = nameof(Icon);
23+
private const string pageUrl = DemoRouteConstants.Docs_URL_Icons;
3224
private const string pageTitle = componentName;
3325
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3426
private const string metaTitle = $"Blazor {componentName} Component";

0 commit comments

Comments
 (0)