15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
@page "/"
|
|
@using Adaeron.Shared.Services
|
|
@inject IFormFactor FormFactor
|
|
|
|
<PageTitle>Home</PageTitle>
|
|
|
|
<h1>Hello, dev!</h1>
|
|
|
|
Welcome to your new app running on <em>@factor</em> using <em>@platform</em>.
|
|
|
|
@code {
|
|
private string factor => FormFactor.GetFormFactor();
|
|
private string platform => FormFactor.GetPlatform();
|
|
}
|