Skip to content

Commit

Permalink
Merge pull request #8 from zebapy/patch-1
Browse files Browse the repository at this point in the history
fix indent and codestyle
  • Loading branch information
Dindaleon committed Jan 22, 2016
2 parents 0af27f6 + 55ea100 commit d6521c3
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/pages/Index.js
Expand Up @@ -21,12 +21,18 @@ const messages = defineMessages({
class Index extends Component {
render() {
return (
<StyleRoot id="index">
<StyleRoot id="index">
<Helmet title="Index" />
<div><FormattedMessage {...messages.welcomeMessage} /></div>
<Link to={ '/home' } ><Theme render="Button"><FormattedMessage { ...messages.takeMeHome } /></Theme></Link>
</StyleRoot>
);
<div>
<FormattedMessage { ...messages.welcomeMessage } />
</div>
<Link to={ '/home' }>
<Theme render="Button">
<FormattedMessage { ...messages.takeMeHome } />
</Theme>
</Link>
</StyleRoot>
);
}
}

Expand Down

0 comments on commit d6521c3

Please sign in to comment.