24 lines
471 B
Plaintext
24 lines
471 B
Plaintext
@page "/device-form-factor"
|
|
@using Template.Shared.Interfaces
|
|
@inject IFormFactor FormFactor
|
|
|
|
<PageTitle>Form Factor</PageTitle>
|
|
|
|
<h1>Device Form Factor</h1>
|
|
|
|
<p>You are running on:</p>
|
|
|
|
<ul>
|
|
<li>Form Factor: @factor</li>
|
|
<li>Platform: @platform</li>
|
|
</ul>
|
|
|
|
<p>
|
|
<em>This component is defined in the Template.Shared library.</em>
|
|
</p>
|
|
|
|
@code {
|
|
private string factor => FormFactor.GetFormFactor();
|
|
private string platform => FormFactor.GetPlatform();
|
|
}
|