mirror of https://github.com/franjsco/tick3t
refactor: Footer component
This commit is contained in:
parent
a7ce3013ab
commit
6df8d5e086
|
@ -1,28 +1,20 @@
|
|||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import {
|
||||
Row,
|
||||
Col
|
||||
} from 'reactstrap';
|
||||
|
||||
class Footer extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Row className="row-centred">
|
||||
<Col>
|
||||
<p className="text-center">
|
||||
<a href="https://github.com/frab1t/tick3t">tick3t</a>{` `}
|
||||
by <a href="https://github.com/frsposito">@frsposito</a> (Francesco Esposito)
|
||||
</p>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
}
|
||||
const Footer = (props) => {
|
||||
return (
|
||||
<Row className="row-centred">
|
||||
<Col>
|
||||
<p className="text-center">
|
||||
<a href="https://github.com/frsposito/tick3t">tick3t</a>{` `}
|
||||
by <a href="https://github.com/frsposito">@frsposito</a> (Francesco Esposito)
|
||||
</p>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
}
|
||||
|
||||
export default Footer;
|
Loading…
Reference in New Issue