add Logo component

This commit is contained in:
frab1t 2019-05-04 21:37:25 +02:00
parent 6b9468e75c
commit 4b4b31d2d3
1 changed files with 23 additions and 0 deletions

23
src/components/Logo.js Normal file
View File

@ -0,0 +1,23 @@
import React, { Component } from 'react';
class Card extends Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<div>
<img
style={this.props.style}
src={this.props.src}
alt={this.props.alt}></img>
</div>
);
}
}
export default Card;