blob: 657110739d9db44597cad06412482f3970d27077 (
plain)
1
2
3
4
5
6
7
8
9
|
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;
|