wabbajack/Wabbajack.App.Blazor/Pages/Play.razor

28 lines
734 B
Plaintext
Raw Normal View History

2022-01-09 15:50:35 +00:00
@page "/"
2022-01-20 08:34:38 +00:00
2022-01-15 06:29:44 +00:00
@namespace Wabbajack.App.Blazor.Pages
2022-01-20 08:34:38 +00:00
2022-01-09 13:33:22 +00:00
<News/>
<div id="content"></div>
@code {
// List<string> InstalledLists = new();
// protected override async Task OnInitializedAsync()
// {
// AbsolutePath installedModlists = KnownFolders.WabbajackAppLocal.Combine("installed_modlists.json");
// string toJson = await installedModlists.ReadAllTextAsync();
// JObject installedJson = JObject.Parse(toJson);
// foreach ((string? key, JToken? value) in installedJson)
// {
// foreach (JObject obj in value)
// {
// Console.WriteLine(obj.Properties());
// }
// }
// }
2022-01-20 08:34:38 +00:00
}
2022-01-21 13:41:37 +00:00
@code {
public const string Route = "/";
}