()
| 2 | |
| 3 | function Footer(props) { |
| 4 | const text = () => { |
| 5 | if (props.about) { |
| 6 | return ( |
| 7 | <a |
| 8 | href='https://github.com/Free-APIs/Free-APIs.github.io/' |
| 9 | target='_blank' |
| 10 | rel='noreferrer' |
| 11 | > |
| 12 | Design and development by Free-APIs. |
| 13 | </a> |
| 14 | ); |
| 15 | } else { |
| 16 | return <Link to='/about'>About this project</Link>; |
| 17 | } |
| 18 | }; |
| 19 | |
| 20 | return ( |
| 21 | <div |
nothing calls this directly
no outgoing calls
no test coverage detected