21 lines
532 B
React
Raw Normal View History

2023-11-27 18:46:31 +04:00
import { useNavigate } from 'react-router-dom';
function Button100(Image) {
const navigator = useNavigate();
const RedirectVideo = () => {
navigator('/Watch');
};
return (
<>
<button onClick={RedirectVideo} className="vid" style={{ width: '100%' }}>
<img src={Image.img} style={{ maxWidth: '100%', maxHeight: '100%' }} />
<h1 className="text-center">НАЗВАНИЕ ВИДЕО</h1>
</button>
</>
);
}
export default Button100;