You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
353 B

@page "/"
@using System.Globalization
@using MyFirstBlazor.Components;
@using MyFirstBlazor.Models;
<PageTitle>Index</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new app.
<br />
<p>
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
</p>
<br />
<div>
<Crafting Items="Items" Recipes="Recipes" />
</div>