add pointer

This commit is contained in:
Kasper Juul Hermansen 2022-08-29 06:54:25 +02:00
parent 9f8e16c036
commit e1aefc435a
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -2,7 +2,7 @@ export const ProjectsHeading = (props: {
title: string;
onClick: () => void;
}) => (
<h5 className="text-sm font-bold hover:underline" onClick={props.onClick}>
<h5 className="text-sm font-bold hover:underline cursor-pointer" onClick={props.onClick}>
{props.title}
</h5>
);