File tile error #272

Merged
6ea86b96 merged 2 commits from file-tile-error into master 2017-06-22 18:00:39 +02:00
Showing only changes of commit d53c3d4db6 - Show all commits

View file

@ -7,6 +7,14 @@ import FilePrice from "component/filePrice";
import UriIndicator from "component/uriIndicator";
class FileCard extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
hovered: false,
};
}
componentWillMount() {
this.resolve(this.props);
}