-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
βπ§π€Ήπ»ββοΈ β Created inventory layout
- Loading branch information
1 parent
2d700a6
commit 8020aea
Showing
3 changed files
with
46 additions
and
13 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
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
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
import React from "react"; | ||
import InventoryItemsGroup, { InventoryMenu, UserBackpackInventory } from "../../components/Content/Inventory/ItemGroup"; | ||
import Layout from "../../components/Section/Layout"; | ||
import Layout, { InventoryLayout } from "../../components/Section/Layout"; | ||
|
||
export default function Inventory() { | ||
return ( | ||
<Layout> | ||
<div className="py-10 px-10"> | ||
<InventoryMenu /> | ||
<UserBackpackInventory /> | ||
</div> | ||
</Layout> | ||
) | ||
} | ||
<InventoryLayout> | ||
<div className="grid grid-cols-3 gap-4 px-5"> | ||
<div><UserBackpackInventory /></div> | ||
</div> | ||
</InventoryLayout> | ||
); | ||
}; |