summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/errorToastContainer.js
blob: 7be91007c2ebc24e012879b31c0b6921c1ff1b64 (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
bgstack15