Added basic configuration
This commit is contained in:
18
testing/HopFrame.Testing/Components/Pages/Home.razor
Normal file
18
testing/HopFrame.Testing/Components/Pages/Home.razor
Normal file
@@ -0,0 +1,18 @@
|
||||
@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()));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user