Fix linting error?

This commit is contained in:
Michael Shilman 2019-03-07 11:43:21 +08:00
parent 9e51607703
commit d340a4abeb

View File

@ -44,13 +44,11 @@ Link.propTypes = {
class Header extends React.Component {
renderSections() {
return sections.map(section => {
return (
<Link className="selected" key={section.id} to={section.href}>
{section.caption}
</Link>
);
});
return sections.map(section => (
<Link className="selected" key={section.id} to={section.href}>
{section.caption}
</Link>
));
}
render() {