Skip to content

Commit 072301c

Browse files
committed
Add menu demo
1 parent 1346bb3 commit 072301c

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
A demo for display extra menu items dynamically in More menu, in React
44

5+
## Menu Demo
6+
![](menu-demo.gif)
7+
58
`git clone git@github.com:imranhsayed/more-menu-react.git`
69

710
`npm install`

menu-demo.gif

1.47 MB
Loading

src/components/menu-data.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
export const menuData = [
22
{
3-
url: 'https://imransayed.com',
3+
url: 'https://imransayed.com/',
44
label: 'HOME',
55
},
66
{
7-
url: 'https://imransayed.com',
7+
url: 'https://imransayed.com/about',
88
label: 'About',
99
},
1010
{
11-
url: 'https://imransayed.com',
11+
url: 'https://imransayed.com/contact',
1212
label: 'Contact Us',
1313
},
1414
{
15-
url: 'https://imransayed.com',
15+
url: 'https://imransayed.com/career',
1616
label: 'Career',
1717
},
1818
{
19-
url: 'https://imransayed.com',
19+
url: 'https://imransayed.com/blogs',
2020
label: 'Blogs',
2121
},
2222
{
23-
url: 'https://imransayed.com',
23+
url: 'https://imransayed.com/apply',
2424
label: 'Apply',
2525
},
2626
{
27-
url: 'https://imransayed.com',
27+
url: 'https://imransayed.com/feature',
2828
label: 'Features',
2929
},
3030
{
31-
url: 'https://imransayed.com',
32-
label: '',
31+
url: 'https://imransayed.com/sitemap',
32+
label: 'Sitemap',
3333
},
3434
];

0 commit comments

Comments
 (0)