npm install -D react-toastify
설치 후
import { ToastContainer } from 'react-toastify'
import 'react-toastify/dist/ReactToastify.css';
<ToastContainer
style={{ zIndex: 200 }}
hideProgressBar={false}
position="top-center"
theme="dark"
/>
사용할 때는 toast function을 import 해온 뒤 매개변수 자리에 메세지 string값만 넣어주면 된다 (+필요시 옵션 추가) 정말이지 무지무지 쉽지 않은가...?
import { toast } from 'react-toastify';
// 중략
toast.warning('경고 메세지') //알림 타입 옵션 추가
toast.success('성공 시 메세지')
...등등