Files
HopFrame/testing/HopFrame.Testing/Components/Pages/Home.razor
2025-01-14 11:34:57 +01:00

19 lines
308 B
Plaintext

@page "/"
@using HopFrame.Core.Services
<PageTitle>Home</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new Fluent Blazor app.
@inject IContextExplorer Explorer
@code {
protected override void OnInitialized() {
Console.WriteLine(string.Join(", ", Explorer.GetTableNames()));
}
}