import { colors, MarkdownCodeBlock } from '@0x/react-shared'; import * as React from 'react'; import * as ReactMarkdown from 'react-markdown'; export interface CommentProps { comment: string; className?: string; } const defaultProps = { className: '', }; export const Comment: React.SFC = (props: CommentProps) => { return (
); }; Comment.defaultProps = defaultProps;