Remove unnessecary arrow function

This commit is contained in:
Chi Vinh Le
2017-08-01 17:20:29 +07:00
parent 2a78ce2bf1
commit 59ea17119d
@@ -72,7 +72,7 @@ const StorySearch = (props) => {
createdAt={new Date(story.created_at).toISOString()}
open={storyOpen}
author={story.author}
goToStory={() => props.goToStory(story.id)}
goToStory={props.goToStory}
/>;
})
}