💄 cursor-pointer to table row

Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
haraldnilsen 2023-09-05 16:25:10 +02:00
parent 431e1bd472
commit bf107bd256
2 changed files with 4 additions and 2 deletions

View file

@ -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>