File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class CommentList extends React.Component {
33
33
34
34
render ( ) {
35
35
const { $$comments } = this . props ;
36
- const commentNodes = $$comments . reverse ( ) . map ( ( $$comment , index ) => {
36
+ const commentNodes = $$comments . reverse ( ) . map ( $$comment => {
37
37
// `key` is a React-specific concept and is not mandatory for the
38
38
// purpose of this tutorial. if you're curious, see more here:
39
39
// http://facebook.github.io/react/docs/multiple-components.html#dynamic-children
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ var WebpackDevServer = require('webpack-dev-server');
5
5
var jade = require ( 'jade' ) ;
6
6
var sleep = require ( 'sleep' ) ;
7
7
var config = require ( './webpack.client.hot.config' ) ;
8
- var uuid = require ( 'node-uuid' )
8
+ var uuid = require ( 'node-uuid' ) ;
9
9
10
10
var comments = [
11
11
{ author : 'Pete Hunt' , text : 'Hey there!' , id : uuid . v4 ( ) } ,
You can’t perform that action at this time.
0 commit comments