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 { interface PlayButtonProps {
onClick: () => void; onClick: (args: any) => void;
} }
const PlayButton = ({ onClick }: PlayButtonProps) => { const PlayButton = ({ onClick }: PlayButtonProps) => {