()
| 1 | import React from 'react' |
| 2 | |
| 3 | const Navbar = () => { |
| 4 | return ( |
| 5 | <nav className='flex justify-around bg-indigo-900 text-white py-2'> |
| 6 | <div className="logo"> |
| 7 | <span className='font-bold text-xl mx-8'>iTask</span> |
| 8 | </div> |
| 9 | <ul className="flex gap-8 mx-9"> |
| 10 | <li className='cursor-pointer hover:font-bold transition-all'>Home</li> |
| 11 | <li className='cursor-pointer hover:font-bold transition-all'>Your Tasks</li> |
| 12 | </ul> |
| 13 | </nav> |
| 14 | ) |
| 15 | } |
| 16 | |
| 17 | export default Navbar |
nothing calls this directly
no outgoing calls
no test coverage detected