💄 cursor-pointer to table row
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
431e1bd472
commit
bf107bd256
2 changed files with 4 additions and 2 deletions
|
@ -14,7 +14,7 @@ Modal.setAppElement(mainAppElement as HTMLElement)
|
|||
|
||||
const MovieTableRow: React.FC<MovieTableRowProps> = ({ movie, onClick }) => {
|
||||
return (
|
||||
<q.tr onClick={onClick} className="card rounded-md">
|
||||
<q.tr onClick={onClick} className="card rounded-md hover:cursor-pointer">
|
||||
<q.td className="p-2">
|
||||
<q.img src={movie.Poster} alt={movie.Title} width="100" />
|
||||
</q.td>
|
||||
|
|
Reference in a new issue