#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'));