import { Button } from 'antd' import React from 'react' export const ScrollToTop = () => { const handleClick = () => { window.scrollTo(0, 0) console.log('') } return ( ) }