diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-05-14 16:36:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 16:36:13 +0800 |
commit | 58fa35641d3016ef106496c929e48febcf827dc6 (patch) | |
tree | 3f33c2faac3b55e52098ab0b5b9883a9b62f5aee /packages/react-docs/src/components/source_link.tsx | |
parent | 6aed4fb1ae27dabed027c855f2cbdc0bfb4f3b6b (diff) | |
parent | b74957acdfc8d67d154bcb4698acd7575db7cc47 (diff) | |
download | dexon-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-docs/src/components/source_link.tsx')
-rw-r--r-- | packages/react-docs/src/components/source_link.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/react-docs/src/components/source_link.tsx b/packages/react-docs/src/components/source_link.tsx index 89956a507..58a9ba6a7 100644 --- a/packages/react-docs/src/components/source_link.tsx +++ b/packages/react-docs/src/components/source_link.tsx @@ -10,7 +10,7 @@ export interface SourceLinkProps { version: string; } -export function SourceLink(props: SourceLinkProps) { +export const SourceLink = (props: SourceLinkProps) => { const src = props.source; const sourceCodeUrl = `${props.sourceUrl}/${src.fileName}#L${src.line}`; return ( @@ -20,4 +20,4 @@ export function SourceLink(props: SourceLinkProps) { </a> </div> ); -} +}; |