Skip to content

Commit 447b931

Browse files
committed
Slim down gallery choices
1 parent b9be9a9 commit 447b931

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

packages/react-router-website/modules/examples/ModalGallery.js

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,9 @@ import {
1010
const IMAGES = [
1111
{ id: 0, title: 'Dark Orchid', color: 'DarkOrchid' },
1212
{ id: 1, title: 'Lime Green', color: 'LimeGreen' },
13-
{ id: 2, title: 'Gold', color: 'Gold' },
14-
{ id: 3, title: 'Midnight Blue', color: 'MidnightBlue' },
15-
{ id: 4, title: 'Dark Slate Gray', color: 'DarkSlateGray' },
16-
{ id: 5, title: 'Tomato', color: 'Tomato' },
17-
{ id: 6, title: 'Seven Ate Nine', color: '#789' },
18-
{ id: 7, title: 'Olive Drab', color: 'OliveDrab' },
19-
{ id: 8, title: 'Crimson', color: 'Crimson' },
20-
{ id: 9, title: 'Sea Green', color: 'SeaGreen' }
13+
{ id: 2, title: 'Tomato', color: 'Tomato' },
14+
{ id: 3, title: 'Seven Ate Nine', color: '#789' },
15+
{ id: 4, title: 'Crimson', color: 'Crimson' }
2116
]
2217

2318
const Thumbnail = ({ color }) =>
@@ -31,8 +26,8 @@ const Home = () => (
3126
<Link to='/gallery'>Visit the Gallery</Link>
3227
<h2>Featured Images</h2>
3328
<ul>
34-
<li><Link to='/img/5'>Tomato</Link></li>
35-
<li><Link to='/img/9'>Sea Green</Link></li>
29+
<li><Link to='/img/2'>Tomato</Link></li>
30+
<li><Link to='/img/4'>Crimson</Link></li>
3631
</ul>
3732
</div>
3833
)

0 commit comments

Comments
 (0)