Allow play button click handler to have args

This commit is contained in:
jeffvli 2023-07-20 00:22:52 -07:00
parent c0e3174d09
commit 55937e71db

View File

@ -39,7 +39,7 @@ const Title = ({ children }: TitleProps) => {
};
interface PlayButtonProps {
onClick: () => void;
onClick: (args: any) => void;
}
const PlayButton = ({ onClick }: PlayButtonProps) => {