Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 11 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import React from 'react'; |
||
2 | |||
3 | class Footer extends React.Component { |
||
4 | render() { |
||
5 | return <div className="footer"> |
||
6 | <p> ©2019 Johan Ledel</p> |
||
7 | </div> |
||
8 | } |
||
9 | } |
||
10 | |||
11 | export default Footer; |