(message, type, autoClose = 800)
| 1 | import {toast} from 'react-toastify'; |
| 2 | |
| 3 | export function showToast(message, type, autoClose = 800) { |
| 4 | toast[type](message, { |
| 5 | position: "top-center", |
| 6 | autoClose, |
| 7 | hideProgressBar: false, |
| 8 | closeOnClick: true, |
| 9 | pauseOnHover: true, |
| 10 | draggable: true, |
| 11 | progress: undefined, |
| 12 | theme: "colored", |
| 13 | }); |
| 14 | } |
no outgoing calls
no test coverage detected