Код: Выделить всё
'use client' //If you are using nextjs then add this line
import { confirm, ConfirmContainer } from 'react-confirm-lite'
export default function Page() {
const handleDelete = async () => {
const isConfirmed = await confirm('Are you sure you want to delete?')
if (isConfirmed) {
// Perform deletion
console.log('Item deleted')
}
}
return (
Delete Item
)
}
Для получения дополнительной информации вы можете посетить эту страницу (react-confirm-lite)[https://www.npmjs.com/package/react-confirm-lite]
Подробнее здесь: https://stackoverflow.com/questions/798 ... and-nextjs
Мобильная версия