Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot committed Jan 4, 2020
1 parent 4fb0d5f commit d0c4bc6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/nextjs/src/Link.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ function Link(props) {
return <NextComposed className={className} ref={innerRef} href={href} {...other} />;
}

return <MuiLink component={NextComposed} className={className} ref={innerRef} href={href} {...other} />;
return (
<MuiLink component={NextComposed} className={className} ref={innerRef} href={href} {...other} />
);
}

Link.propTypes = {
Expand Down

0 comments on commit d0c4bc6

Please sign in to comment.