1
0
mirror of https://github.com/franjsco/tick3t synced 2024-12-28 18:29:56 +01:00

refactor: Footer component

This commit is contained in:
Francesco Esposito 2019-07-31 15:54:37 +02:00
parent a7ce3013ab
commit 6df8d5e086

View File

@ -1,28 +1,20 @@
import React, { Component } from 'react'; import React from 'react';
import { import {
Row, Row,
Col Col
} from 'reactstrap'; } from 'reactstrap';
class Footer extends Component { const Footer = (props) => {
constructor(props) {
super(props);
this.state = {};
}
render() {
return ( return (
<Row className="row-centred"> <Row className="row-centred">
<Col> <Col>
<p className="text-center"> <p className="text-center">
<a href="https://github.com/frab1t/tick3t">tick3t</a>{` `} <a href="https://github.com/frsposito/tick3t">tick3t</a>{` `}
by <a href="https://github.com/frsposito">@frsposito</a> (Francesco Esposito) by <a href="https://github.com/frsposito">@frsposito</a> (Francesco Esposito)
</p> </p>
</Col> </Col>
</Row> </Row>
); );
} }
}
export default Footer; export default Footer;