Added similar species gallery

This commit is contained in:
ajmaley
2018-11-25 20:16:11 -05:00
parent 7722e2006f
commit 0f4f10f285
3 changed files with 8 additions and 14 deletions

View File

@@ -167,6 +167,9 @@ class ResponsiveDrawer extends React.Component {
<ListItem button className={classes.nested} onClick={() => this.nav('Gallery3')}>
<ListItemText inset primary="Martens Being Martens" />
</ListItem>
<ListItem button className={classes.nested} onClick={() => this.nav('Gallery4')}>
<ListItemText inset primary="Species Similar to Martens" />
</ListItem>
</List>
</Collapse>
</List>
@@ -236,6 +239,7 @@ class ResponsiveDrawer extends React.Component {
{this.state.key === 'Gallery1' && <FlameLinkCollectionGallery galleryName={'martensAndKits'}/>}
{this.state.key === 'Gallery2' && <FlameLinkCollectionGallery galleryName={'martensAtNight'}/>}
{this.state.key === 'Gallery3' && <FlameLinkCollectionGallery galleryName={'martensBeingMartens'}/>}
{this.state.key === 'Gallery4' && <FlameLinkCollectionGallery galleryName={'similarSpecies'}/>}
</main>
</div>
);