mirror of
https://github.com/franjsco/tick3t
synced 2025-06-05 22:19:18 +02:00
add Logo component
This commit is contained in:
23
src/components/Logo.js
Normal file
23
src/components/Logo.js
Normal 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;
|
Reference in New Issue
Block a user