mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:41:07 +08:00
Fix linting error?
This commit is contained in:
parent
9e51607703
commit
d340a4abeb
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user