1 2 3 4 5 6 7 8 9 10 11 12 13 14
import React from 'react'; import ReduxToastr from 'react-redux-toastr'; import './react-redux-toastr.min.css'; const ErrorToastContainer = props => ( <ReduxToastr timeOut={4000} preventDuplicates position="bottom-left" progressBar /> ); export default ErrorToastContainer;