jazst21
1/25/2019 - 7:05 AM

#react

#react

import React from 'react';
import ReactDOM from 'react-dom';
import CommentDetail from './CommentDetail';
import faker from 'faker';

const App = () => {
    return <div className="ui container comments">
        <CommentDetail author="Sam" />
        <CommentDetail author="Sandy" />
        <CommentDetail author="William" />
        <CommentDetail/>
      </div>;
};

ReactDOM.render(<App/>, document.querySelector('#root'));