我正在构建这个简单的react应用,似乎其他npms的样式没有继承,我试图在按钮单击上使用react-confirm-alert来触发它,而不是像模态动画那样进行动画处理,它只是出现在页面底部,在here下未设置样式,我是否缺少一些带有react-confirm-alert的奇怪格式设置?
我的警报功能代码:
deleteTable = (id) =>{
//react confirm alert furnction, easy to use confirm alerts
confirmAlert({
title: "Confirm to submit",
message: "Are You Sure You Want to Remove This Employee?",
buttons:[
{
label: 'Remove',
onClick: () =>{
axios({
method: "POST",
url: "/api/delete",
data: {
id: id
}
}).then(window.location.href="/")
}
},
{
label: 'Cancel'
}
]
})
}