add pointer

This commit is contained in:
2022-08-29 06:54:25 +02:00
parent 9f8e16c036
commit e1aefc435a

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>
);