From 6ae7ff0d4b5c90aa659ea95a070aae8531bdf669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Mon, 18 May 2015 09:59:45 +0200 Subject: [PATCH] code formatting --- js/components/ascribe_app.js | 16 ++++++++-------- js/components/gui/artwork_list.js | 8 ++++---- js/components/stores/artwork_list_store.js | 2 +- js/routes.js | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/js/components/ascribe_app.js b/js/components/ascribe_app.js index 7850f5a4..4bc41224 100644 --- a/js/components/ascribe_app.js +++ b/js/components/ascribe_app.js @@ -4,14 +4,14 @@ import Router from 'react-router'; var RouteHandler = Router.RouteHandler; class AscribeApp extends React.Component { - render () { - return ( -
-

ascribe all the things!

- -
- ); - } + render () { + return ( +
+

ascribe all the things!

+ +
+ ); + } }; export default AscribeApp; diff --git a/js/components/gui/artwork_list.js b/js/components/gui/artwork_list.js index f93ef870..d31ae240 100644 --- a/js/components/gui/artwork_list.js +++ b/js/components/gui/artwork_list.js @@ -1,13 +1,13 @@ import React from 'react'; class ArtworkList extends React.Component { - render () { + render() { return ( - ); - } + } }; export default ArtworkList; diff --git a/js/components/stores/artwork_list_store.js b/js/components/stores/artwork_list_store.js index cfe4f23b..37c924d4 100644 --- a/js/components/stores/artwork_list_store.js +++ b/js/components/stores/artwork_list_store.js @@ -2,4 +2,4 @@ class ArtworkListStore { constructor() { this.artworkList = []; } -} \ No newline at end of file +}; \ No newline at end of file diff --git a/js/routes.js b/js/routes.js index a881d8b3..0587cff1 100644 --- a/js/routes.js +++ b/js/routes.js @@ -6,7 +6,7 @@ import ArtworkList from './components/artwork_list'; var Route = Router.Route; var routes = ( - - - + + + ); \ No newline at end of file