Estudando conceitos do react com ant design.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 lines
240 B

import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
const notify = (message:String,type:any) => toast(message,{type:type,autoClose:2000,theme:'dark'});
export {notify, ToastContainer};