首页 > 其他分享 >前端项目实战壹佰陆拾柒react-admin+material ui-react-admin之Create之useNotify

前端项目实战壹佰陆拾柒react-admin+material ui-react-admin之Create之useNotify

时间:2023-08-21 11:37:10浏览次数:49  
标签:const 歌谣 admin material react useNotify notify


我是歌谣 微信公众号关注前端小歌谣

import { useNotify } from 'react-admin';

const NotifyButton = () => {
    const notify = useNotify();
    const handleClick = () => {
        notify(`Comment approved`, { type: 'success' });
    }
    return <button onClick={handleClick}>Notify</button>;
};

 运行结果

 

前端项目实战壹佰陆拾柒react-admin+material ui-react-admin之Create之useNotify_微信公众号

标签:const,歌谣,admin,material,react,useNotify,notify
From: https://blog.51cto.com/u_15460007/7173017

相关文章