mirror of
https://github.com/franjsco/tick3t
synced 2025-03-04 11:37:51 +01:00
add Logo component
This commit is contained in:
parent
6b9468e75c
commit
4b4b31d2d3
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;
|
Loading…
x
Reference in New Issue
Block a user