Skip to content

Commit

Permalink
running prettier for NavTabs
Browse files Browse the repository at this point in the history
  • Loading branch information
sperry94 committed Mar 26, 2019
1 parent 68de5f0 commit 326bd19
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/src/pages/demos/tabs/NavTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ interface LinkTabProps {
}

function LinkTab(props: LinkTabProps) {
return <Tab component="a" onClick={(event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => event.preventDefault()} {...props} />;
return (
<Tab
component="a"
onClick={(event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => event.preventDefault()}
{...props}
/>
);
}

const useStyles = makeStyles((theme: Theme) => ({
Expand Down

0 comments on commit 326bd19

Please sign in to comment.