()
| 1 | import { Link } from 'react-router-dom'; |
| 2 | |
| 3 | function Help() { |
| 4 | return ( |
| 5 | <Link |
| 6 | className='rounded-full h-12 w-12 text-gray-200 bg-gradient-to-r |
| 7 | from-gray-700 to-gray-800 fixed xs:bottom-0 right-0 m-8 text-lg |
| 8 | flex justify-center items-center shadow-lg bottom-10 |
| 9 | hover:shadow-xl hover:from-gray-600' |
| 10 | title='Need help?' |
| 11 | to='/help' |
| 12 | > |
| 13 | ? |
| 14 | </Link> |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | export default Help; |
nothing calls this directly
no outgoing calls
no test coverage detected