1
0
mirror of https://github.com/ascribe/onion.git synced 2025-02-14 21:10:27 +01:00

code formatting

This commit is contained in:
Tim Daubenschütz 2015-05-18 09:59:45 +02:00
parent 25a715ddb3
commit 6ae7ff0d4b
4 changed files with 16 additions and 16 deletions

View File

@ -1,7 +1,7 @@
import React from 'react'; import React from 'react';
class ArtworkList extends React.Component { class ArtworkList extends React.Component {
render () { render() {
return ( return (
<ul> <ul>
<li>This is an artwork</li> <li>This is an artwork</li>

View File

@ -2,4 +2,4 @@ class ArtworkListStore {
constructor() { constructor() {
this.artworkList = []; this.artworkList = [];
} }
} };