adding a few more valid urls to the routes

This commit is contained in:
mike@arpaia.co 2014-11-05 02:32:59 -08:00
parent b79f512a9a
commit 1a129ff17c

View File

@ -22,6 +22,8 @@ var PagesHolder = React.createClass({
<Location path="/index.html" handler={HomePage} />
<Location path="/overview/" handler={OverviewPage} />
<Location path="/overview/index.html" handler={OverviewPage} />
<Location path="/tables/" handler={TablesPage} />
<Location path="/tables/index.html" handler={TablesPage} />
<Location path="/tables/:tag" handler={TablesPage} />
<NotFound handler={NotFoundPage} />
</Locations>