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