Skip to content

Instantly share code, notes, and snippets.

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

  • Save czbaker/7e17174253f51160316b to your computer and use it in GitHub Desktop.

Select an option

Save czbaker/7e17174253f51160316b 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>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment