import { EvWechat } from '../components/EvWechat'; import { toast } from 'react-toastify'; export const RedirectSuccess = ({ url }: { url: string }) => { return (
创建成功
跳转到新应用
); }; export const toastSuccess = (url: string) => { toast.success(, { autoClose: 5000, className: 'rounded-md shadow-lg', // icon: false, }); }; export const toastWeChat = () => { toast.success(, { autoClose: 10000, className: 'rounded-md shadow-lg', icon: false, }); };