Skip to content

Commit

Permalink
Merge pull request remix-run#630 from christiantakle/patch-1
Browse files Browse the repository at this point in the history
Correct typographical error
  • Loading branch information
ryanflorence committed Dec 20, 2014
2 parents f1e68fb + 283932b commit f4fe2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ var App = React.createClass({
var page;
switch (this.props.page) {
case 'dashboard': page = <Dashboard/>; break;
case 'inbox': page = <Dashboard/>; break;
case 'inbox': page = <InboxRoute/>; break;
default: page = <Index/>; break;
}
return (
Expand Down

0 comments on commit f4fe2d7

Please sign in to comment.