Skip to content

Instantly share code, notes, and snippets.

@czbaker
Created March 17, 2016 12:32
Show Gist options
  • Select an option

  • Save czbaker/650e566cfb066520ef81 to your computer and use it in GitHub Desktop.

Select an option

Save czbaker/650e566cfb066520ef81 to your computer and use it in GitHub Desktop.
let loginErrors = () => {
if (store.getState().general.loginError) {
return (
<div className="ui error message">
<div className="header">Login Error:</div>
{store.getState().general.loginError}
</div>
)
} else {
return (<div>Blah.</div>)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment