summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors/errorToastContainer.js
blob: d8da6af6947a230dfcdf3252b3371a7e24252737 (plain)
1
2
3
4
5
6
7
import React from 'react';
import ReduxToastr from 'react-redux-toastr';
import './react-redux-toastr.min.css';

export const ErrorToastContainer = props => (
  <ReduxToastr timeOut={4000} preventDuplicates position="bottom-left" progressBar />
);
bgstack15