BackButton.tsx 561 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * @author tuonian
  3. * @date 2023/6/30
  4. */
  5. import {Button} from "antd";
  6. import {ArrowLeftOutlined} from "@ant-design/icons";
  7. import {useNavigate} from "react-router";
  8. type IProps = {
  9. to?: string
  10. }
  11. export const BackButton = ({to}: IProps) => {
  12. const navigate = useNavigate()
  13. const goBack = ()=>{
  14. if (to){
  15. navigate(to, { replace: true })
  16. }else {
  17. navigate(-1)
  18. }
  19. }
  20. return (<Button
  21. ghost style={{color: '#1890ff',marginRight: 10}}
  22. onClick={goBack}
  23. icon={<ArrowLeftOutlined />} /> )
  24. }