Skip to content

Instantly share code, notes, and snippets.

@aminghs
Created June 21, 2020 09:07
Show Gist options
  • Save aminghs/71ff4cbcb271a389c2e1cd3f5a13bd40 to your computer and use it in GitHub Desktop.
Save aminghs/71ff4cbcb271a389c2e1cd3f5a13bd40 to your computer and use it in GitHub Desktop.
React Component
import React from 'react';
class NavBar extends React.Component {
render() {
const pages = ['home', 'blog', 'pics', 'bio', 'art', 'shop', 'about', 'contact'];
const navLinks = pages.map(page => {
return (
<a href={'/' + page}>
{page}
</a>
)
});
return <nav>{navLinks}</nav>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment