toastify/dist/ReactToastify.css`,我无法管理Toast以显示在右下角。我使用的是确切的代码作为文档。但它不起作用
import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
toast.configure();
function myComponent () {
...
const submit = () => {
toast.success('Your Message was sent to Wasfa Team', { poistion: toast.POSITION.BOTTOM_RIGHT });
}
...
return (
...
<ToastContainer />
)
}发布于 2021-08-02 06:49:21
您必须将该位置定义为ToastContainer上的道具
<ToastContainer position="bottom-right" />发布于 2021-08-02 06:49:08
只需设置位置属性
<ToastContainer position="bottom-right"/>发布于 2021-08-02 06:50:05
只要用这个位置
import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
toast.configure();
function myComponent () {
...
const submit = () => {
toast.success('Your Message was sent to Wasfa Team', { poistion: "bottom-right" });
}
...
return (
...
<ToastContainer />
)
}https://stackoverflow.com/questions/68617361
复制相似问题