Skip to content

Commit

Permalink
fix : fix grid view
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum committed Sep 29, 2023
1 parent f44d42a commit e575d1c
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/menu/menu.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,11 @@ const MenuItems = () => {

return (
<Grid>
<Row>
{items.map((item) => (
<Column>
<Item item={item} />
</Column>
))}
</Row>
{items.map((item) => (
<Column lg={5} md={5} sm={5}>
<Item item={item} />
</Column>
))}
</Grid>
);
};
Expand Down

0 comments on commit e575d1c

Please sign in to comment.