1
0
mirror of https://github.com/franjsco/tick3t synced 2025-03-04 11:37:51 +01:00

add Logo component

This commit is contained in:
frab1t 2019-05-04 21:37:25 +02:00
parent 6b9468e75c
commit 4b4b31d2d3

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;