import { colors } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; import { Source } from '../types'; export interface SourceLinkProps { source: Source; sourceUrl: string; version: string; } export function SourceLink(props: SourceLinkProps) { const src = props.source; const sourceCodeUrl = `${props.sourceUrl}/${src.fileName}#L${src.line}`; return (
Source
); }