mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
28 lines
734 B
Plaintext
28 lines
734 B
Plaintext
@page "/"
|
|
|
|
@namespace Wabbajack.App.Blazor.Pages
|
|
|
|
<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());
|
|
// }
|
|
// }
|
|
// }
|
|
}
|
|
|
|
@code {
|
|
public const string Route = "/";
|
|
}
|