import React from 'react' import { copyURL } from '@/app/actions' import { useAppDispatch } from '@/app/hooks' export const CopyUrlButton: React.FC = () => { const dispatch = useAppDispatch() const onClick = (): void => { dispatch(copyURL()) } return ( ) }