Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieudutour committed Jan 21, 2020
1 parent 2b44ce3 commit 3a64a3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/ui/tutorial/tutorial-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,6 @@ class TutorialStepInstructions extends React.Component<
}
}

const SkipLinkButton: React.SFC<{ onClick: () => void }> = props => (
<LinkButton onClick={props.onClick}>Skip</LinkButton>
)
const SkipLinkButton: React.FunctionComponent<{
onClick: () => void
}> = props => <LinkButton onClick={props.onClick}>Skip</LinkButton>

0 comments on commit 3a64a3b

Please sign in to comment.