import { useRefresh } from 'react-admin'; const RefreshButton = () => { const refresh = useRefresh(); const handleClick = () => { refresh(); } return <button ...
確定! 回上一頁