Skip to content

Commit 3a64a3b

Browse files
committed
fix lint
1 parent 2b44ce3 commit 3a64a3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/ui/tutorial/tutorial-panel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,6 @@ class TutorialStepInstructions extends React.Component<
345345
}
346346
}
347347

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

0 commit comments

Comments
 (0)