StephenGrider / RallyCodingWeekly

Code Examples for Weekly Javascript Videos - http://www.RallyCoding.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[002 - Basics of Redux ] Multiple export default in components/app.js

murielg opened this issue · comments

Only one export default is allowed per module.

@murielg, looks like you caught it too. Will your correction be pushed to master?

Also, in terms of styling for emails, the bootstrap styling looks nothing like in the video. Try this:

renderUser({id, name, email}) {
    return (
      <li className="list-group-item" key={id}>
        <span className="label pull-xs-right">
          <a href={email}>{email}</a>
        </span>
        {name}
      </li>
    );
  }

Looks more like what's in the video.