1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 01:25:17 +01:00

fix refactor fault

This commit is contained in:
Tim Daubenschütz 2015-05-20 09:08:26 +02:00
parent 2b8e1d604b
commit 60c4b3ac8b

View File

@ -10,7 +10,7 @@ let Route = Router.Route;
let routes = (
<Route name="app" path="/" handler={AscribeApp}>
<Route name="pieces" handler={PieceList} />
<Route name="piece" path="/artworks/:bitcoin_ID_noPrefix" handler={Piece} />
<Route name="piece" path="/pieces/:bitcoin_ID_noPrefix" handler={Piece} />
</Route>
);