// Import the React and ReactDOM librariesimportReactfrom'react';importReactDOMfrom'react-dom';importfakerfrom'faker';//lib for fake dataimportCommentDetailfrom'./CommentDetail';// Create a react componentconstApp=()=>{return(<divclassName="ui container comments"><CommentDetailauthor="Sam"content="some content"avatar={faker.image.avatar()}/>
<CommentDetailauthor="Alex"content="another content"avatar={faker.image.avatar()}/>
</div>
);}// Take the react component and show it on the screenReactDOM.render(<App/>,document.querySelector('#root'));