blob: 0a3c5a3e448286d5d802a61889d7580a5d92c1e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import React, {Component} from 'react';
import './Footer.scss';
class Footer extends Component {
render() {
return (
<footer className="footer container-fluid">
<div className="row">
<div className="col-12">
<div className="footer-timeline">timeline - <a href="https://github.com/eciavatta/caronte/issues/12">to be implemented</a></div>
</div>
</div>
</footer>
);
}
}
export default Footer;
|