aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/components/anchor_title.tsx
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-05-14 16:36:13 +0800
committerGitHub <noreply@github.com>2018-05-14 16:36:13 +0800
commit58fa35641d3016ef106496c929e48febcf827dc6 (patch)
tree3f33c2faac3b55e52098ab0b5b9883a9b62f5aee /packages/react-shared/src/components/anchor_title.tsx
parent6aed4fb1ae27dabed027c855f2cbdc0bfb4f3b6b (diff)
parentb74957acdfc8d67d154bcb4698acd7575db7cc47 (diff)
downloaddexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar.gz
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar.bz2
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar.lz
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar.xz
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.tar.zst
dexon-0x-contracts-58fa35641d3016ef106496c929e48febcf827dc6.zip
Merge pull request #585 from 0xProject/feature/typedef
Add missing type definitions. Enable typedef linter rule
Diffstat (limited to 'packages/react-shared/src/components/anchor_title.tsx')
-rw-r--r--packages/react-shared/src/components/anchor_title.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/react-shared/src/components/anchor_title.tsx b/packages/react-shared/src/components/anchor_title.tsx
index f44354097..89fde23cf 100644
--- a/packages/react-shared/src/components/anchor_title.tsx
+++ b/packages/react-shared/src/components/anchor_title.tsx
@@ -52,7 +52,7 @@ export class AnchorTitle extends React.Component<AnchorTitleProps, AnchorTitleSt
isHovering: false,
};
}
- public render() {
+ public render(): React.ReactNode {
let opacity = 0;
if (this.props.shouldShowAnchor) {
opacity = this.state.isHovering ? 0.6 : 1;
@@ -79,7 +79,7 @@ export class AnchorTitle extends React.Component<AnchorTitleProps, AnchorTitleSt
</div>
);
}
- private _setHoverState(isHovering: boolean) {
+ private _setHoverState(isHovering: boolean): void {
this.setState({
isHovering,
});