aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/pages/documentation/comment.tsx
blob: 6be39f58694a5b9bf266805bd72d6a15839d36bf (plain) (tree)
1
2
3
4
5
6
7
8


                                                
                                                                        

                        

                           


                      
                      


                                                                          




                                                                                                             
  

                                    
import * as _ from 'lodash';
import * as React from 'react';
import * as ReactMarkdown from 'react-markdown';
import { MarkdownCodeBlock } from 'ts/pages/shared/markdown_code_block';

interface CommentProps {
    comment: string;
    className?: string;
}

const defaultProps = {
    className: '',
};

export const Comment: React.SFC<CommentProps> = (props: CommentProps) => {
    return (
        <div className={`${props.className} comment`}>
            <ReactMarkdown source={props.comment} renderers={{ CodeBlock: MarkdownCodeBlock }} />
        </div>
    );
};

Comment.defaultProps = defaultProps;