-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
500ced1
commit 4639cc1
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@inherits BasePkmdsComponent | ||
|
||
@if (AppState.SaveFile is { Context: { } saveFileEntityContext, Generation: { } saveGeneration } saveFile && | ||
saveFileEntityContext is not | ||
EntityContext.None or | ||
EntityContext.SplitInvalid or | ||
EntityContext.MaxInvalid) | ||
{ | ||
|
||
<MudTabs Outlined | ||
Rounded | ||
Border> | ||
|
||
<MudTabPanel Text="Items"> | ||
</MudTabPanel> | ||
|
||
<MudTabPanel Text="PC Items"> | ||
</MudTabPanel> | ||
|
||
</MudTabs> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
namespace Pkmds.Web.Components.MainTabPages; | ||
|
||
public partial class BagTab | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,5 +41,9 @@ else | |
<TrainerInfoTab /> | ||
</MudTabPanel> | ||
|
||
<MudTabPanel Text="Bag"> | ||
<BagTab /> | ||
</MudTabPanel> | ||
|
||
</MudTabs> | ||
} |
4639cc1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Starting work on #23