From 7a1bd8cd822f7a1f6808f420e6a929dac56e158d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Mon, 18 May 2015 09:29:51 +0200 Subject: [PATCH] fixed hash in url --- js/app.js | 2 +- js/components/artwork_list.js | 14 +++++++------- js/components/hello_app.js | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/js/app.js b/js/app.js index 293327d7..432dfb73 100644 --- a/js/app.js +++ b/js/app.js @@ -10,7 +10,7 @@ var Route = Router.Route; var routes = ( - + ); diff --git a/js/components/artwork_list.js b/js/components/artwork_list.js index cc9a6666..5f14d1fe 100644 --- a/js/components/artwork_list.js +++ b/js/components/artwork_list.js @@ -1,13 +1,13 @@ import React from 'react'; class ArtworkList extends React.Component { - render () { - return ( -
    -
  • This is an artwork
  • -
- ); - } + render () { + return ( +
    +
  • This is an artwork
  • +
+ ); + } }; export default ArtworkList; diff --git a/js/components/hello_app.js b/js/components/hello_app.js index 330fa9a2..e150b623 100644 --- a/js/components/hello_app.js +++ b/js/components/hello_app.js @@ -8,7 +8,7 @@ class HelloApp extends React.Component { return (

ascribe all the things!

- +
); }